如何在 MATLAB 中垂直翻转绘图轴上的文本?
我遇到一个问题,我想并排显示一个表面和一个图像。为此,我使用了这段代码。
figure(1)
subplot(1,2,1)
axis([0 100 0 100 0 1])
surf(x,y,z)
title(['Surface Title'])
subplot(1,2,1)
image(my_image)
title(['Image Title'])
发生的情况是
1) 图形被创建 2)创建第一个子图 3) 使用正确的轴和标题渲染表面。 4)创建第二个子图
之后,意想不到的事情开始发生。渲染图像时,图像上的文本会垂直翻转。这是预期的行为吗?如果没有,有没有办法翻转轴上的文本?
I'm having an issue where I have a surface and an image I want to display side by side. To do this I used this code.
figure(1)
subplot(1,2,1)
axis([0 100 0 100 0 1])
surf(x,y,z)
title(['Surface Title'])
subplot(1,2,1)
image(my_image)
title(['Image Title'])
What happens is the
1) The figure is created
2) The first subplot is created
3) The surface is rendered with proper axis and title.
4) The second subplot is created
After that unexpected things start happening. When the image is rendered the text on the image is flipped vertically. Is this expected behavior? If not is there a way to flip the text on the axis?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 image 函数的文档页面:
或者您可以简单地发出命令:
axis xy
这是一个示例:
From the documentation page of the image function:
Or you can simply issue the command:
axis xy
Here is an example: