reverse Y axis with Imagesc()

52 次查看(过去 30 天)
Turbulence Analysis
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');

回答(1 个)

Ameer Hamza
Ameer Hamza 2020-10-2
Set to reverse
set(gca, 'YDir','reverse');
  3 个评论
Turbulence Analysis
Hi, I sorted it out. just added.
I1 = (fliplr(I));
Ameer Hamza
Ameer Hamza 2020-10-2
Ah!! Y-axis is already reversed in imagesc. I think you wanted to flip x-axis?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Blue 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by