在 MATLAB 中绘制图形

发布于 2024-10-21 01:59:51 字数 597 浏览 2 评论 0原文

有这个点

我这里的x 轴 : 0.958 1.043 1.907 0.780 0.579 <代码>0.003 0.001 0.014 0.007 0.004

y 轴:0.003 > 0.001 0.003 0.002 0.001 0.105 1.748 < code>1.839 1.021 0.214

向量 V1 = [-0.425, 0.977]

我如何将所有这些绘制在一张图上?

带刻度:

x 轴:10^-3 到 10^1

y 轴:10^-3 到 10^1

谢谢

I have this points here

x-axis : 0.958 1.043 1.907 0.780 0.579 0.003 0.001 0.014 0.007 0.004

y-axis : 0.003 0.001 0.003 0.002 0.001 0.105 1.748 1.839 1.021 0.214

a vector V1 = [-0.425, 0.977]

How can i plot all these on 1 graph?

With scales:

x-axis: 10^-3 until 10^1

y-axis: 10^-3 until 10^1

Thanks

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

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

发布评论

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

评论(1

独孤求败 2024-10-28 01:59:51

听起来你想做一个双对数图。你可以这样做:

>> x=[0.958 1.043 1.907 0.780 0.579 0.003 0.001 0.014 0.007 0.004];
>> y=[0.003 0.001 0.003 0.002 0.001 0.105 1.748 1.839 1.021 0.214];
>> loglog(x,y, '.');

这给出了:

在此处输入图像描述

如果您还想绘制矢量,则无法绘制由于 x 值为负,因此在对数空间中(至少在 x 轴上)。在正常空间中绘图可以通过以下方式完成:

>> x=[0.958 1.043 1.907 0.780 0.579 0.003 0.001 0.014 0.007 0.004];
>> y=[0.003 0.001 0.003 0.002 0.001 0.105 1.748 1.839 1.021 0.214];
>> figure;
>> plot(x, y, '.');
>> hold on;
>> plot([0 -.425], [0 .977]);

结果不太漂亮:

在此处输入图像描述

It sounds like you want to do a log-log plot. You could do this:

>> x=[0.958 1.043 1.907 0.780 0.579 0.003 0.001 0.014 0.007 0.004];
>> y=[0.003 0.001 0.003 0.002 0.001 0.105 1.748 1.839 1.021 0.214];
>> loglog(x,y, '.');

Which gives this:

enter image description here

If you want to also plot the vector you can't plot in log-space (at least on the x-axis) because of the negative x value. Plotting in normal space can be done by:

>> x=[0.958 1.043 1.907 0.780 0.579 0.003 0.001 0.014 0.007 0.004];
>> y=[0.003 0.001 0.003 0.002 0.001 0.105 1.748 1.839 1.021 0.214];
>> figure;
>> plot(x, y, '.');
>> hold on;
>> plot([0 -.425], [0 .977]);

The results aren't as pretty:

enter image description here

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