reverse Y axis with Imagesc()
63 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
How to reverse the Y axis while displaying images with imagesc () function.. I have tried as follows, it does the job, however, reverses the image as well.
ax = gca;
imagesc(x,y,I');
set(gca, 'YDir','normal');
0 Kommentare
Antworten (1)
Ameer Hamza
am 2 Okt. 2020
Set to reverse
set(gca, 'YDir','reverse');
3 Kommentare
Ameer Hamza
am 2 Okt. 2020
Ah!! Y-axis is already reversed in imagesc. I think you wanted to flip x-axis?
Siehe auch
Kategorien
Mehr zu Blue finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!