使轴与其他网格不同

发布于 2024-12-21 20:53:08 字数 188 浏览 3 评论 0原文

有谁知道如何使 x 轴和 y 轴看起来更粗一点或以某种方式与其他网格不同? 在此处输入图像描述

不知怎的,我希望它看起来像这样 在此处输入图像描述

Does anyone know how to make x-axis and y-axis look a bit bolder or somehow distinct from other grids?
enter image description here

Somehow I want it to look like this
enter image description here

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

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

发布评论

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

评论(2

温柔嚣张 2024-12-28 20:53:08

我能想到的最愚蠢的事情就是用 LineWidth = 2 画一条线

<块引用>

图();
绘图([0 0],[-200 200],'线宽',2,'颜色',[0 0 0])
坚持;plot([-200 200],[0 0],'线宽',2,'颜色',[0 0 0])

虽然它有一些明显的缺点,比如它在某个地方结束。

The stupidest thing I can think of is drawing a line with LineWidth = 2

figure();
plot([0 0],[-200 200],'LineWidth',2,'Color',[0 0 0])
hold on;plot([-200 200],[0 0],'LineWidth',2,'Color',[0 0 0])

Though it has some obvious disadvantages, like that it ends at some place.

抹茶夏天i‖ 2024-12-28 20:53:08

查看 hlinevline来自 MATLAB 文件交换。它可以让您在任何给定点绘制水平和垂直线,并将这些线延伸到无穷大(因此重做轴仍将保持在整个绘图上绘制的线)。如果您需要绘制到特定句柄,这里有一个高级 hline/vline

Check out hline and vline from the MATLAB File Exchange. It will let you draw horizontal and vertical lines at any given point and extend those lines to infinity (so redoing axes will still keep the lines drawn all the away across your plot). If you need to draw to specific handles, here's an advanced hline/vline.

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