I have a 50×50 matrix which I am using to plot imagesc plot. I want to be able to show say 5 co-ordinate location on that imagesc with dark circles which mark the location of the wells. How do I do that? Thanks.
I have a 50×50 matrix which I am using to plot imagesc plot. I
Share
Try simply setting the axes limits to the desired values after all plotting is complete:
In your case,
xminandyminwould be0, andxmaxandymaxwould besize(mat_name,2)andsize(mat_name,1)respectively.