如何在 MATLAB 中垂直翻转绘图轴上的文本?

发布于 2024-11-28 16:00:31 字数 353 浏览 1 评论 0原文

我遇到一个问题,我想并排显示一个表面和一个图像。为此,我使用了这段代码。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡の花香 2024-12-05 16:00:31

image 函数的文档页面:

默认情况下,图像从最低值到最高值绘制 y 轴,顶部
到底部。要扭转这种情况,请输入 set(gca,'YDir','normal')。这将
反转 y 轴和图像。

或者您可以简单地发出命令:axis xy

这是一个示例:

[X,Y,Z] = peaks;

subplot(121), surf(X,Y,Z)
axis([-5 5 -5 5 -10 10])
title('Surface Title')
xlabel x, ylabel y, zlabel z

subplot(122), imagesc(Z)
axis xy
title('Image Title')

在此处输入图像描述

From the documentation page of the image function:

By default, image plots the y-axis from lowest to highest value, top
to bottom. To reverse this, type set(gca,'YDir','normal'). This will
reverse both the y-axis and the image.

Or you can simply issue the command: axis xy

Here is an example:

[X,Y,Z] = peaks;

subplot(121), surf(X,Y,Z)
axis([-5 5 -5 5 -10 10])
title('Surface Title')
xlabel x, ylabel y, zlabel z

subplot(122), imagesc(Z)
axis xy
title('Image Title')

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文