轴属性 - Matlab

发布于 2024-11-17 07:18:56 字数 278 浏览 2 评论 0原文

我需要知道如何删除 X 轴和 Y 轴上的数字。 我不认为这与 X 网格或 Y 网格相关,因为在轴检查器中 XGrid 和 YGrid 处于关闭状态。

在此处输入图像描述

我尝试了所有方法,但没有帮助。

编辑: 在此处输入图像描述

谢谢...

I need to know how to remove the numbers from X and Y axes.
I'm don't think this is related to the X grid or Y grid because in the axes Inspector
the XGrid and YGrid is in off state.

enter image description here

I tried all but it did not help.

edit: enter image description here

thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

缘字诀 2024-11-24 07:18:56

一个更简单的解决方案是,

axis off

但它有一个警告:它还删除了 x 和 y 标签。因此,如果您想包含标签并仅删除数字,nibot 的答案是正确的方法。

A simpler solution is

axis off

but it comes with a caveat: it also removes the x and y labels. So if you wanted to include labels and remove only the numbers, nibot's answer is the correct way to go.

╰沐子 2024-11-24 07:18:56
set(gca, 'XTick', [], 'YTick', [])
set(gca, 'XTick', [], 'YTick', [])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文