0

如何使用 MATLAB 在同一图中绘制以下数据?

在此处输入图像描述

频率以赫兹 (Hz) 为单位测量,应为水平轴。下降时间以微秒 (us) 为单位,应为垂直轴。

freq1 与 falltime1 一起使用 freq2 与 falltime2 一起使用 freq3 与 falltime3 一起使用

它们都应该有不同的颜色,并且图表应该有一个图例。

如何在 MATLAB 中实现这一点?

4

1 回答 1

1

hold on命令可能是您想要的。

figure
hold on
plot(freq1, falltime1, 'r-o') % plot in red, circles connected with lines
plot(freq2, falltime2, 'g-o') % plot in green, circles connected with lines
plot(freq3, falltime3, 'b-o') % plot in blue, circles connected with lines
legend('1', '2', '3') % legend text
xlabel('Hertz (Hz)')
ylabel('Fall Time (\mus)')

在同一张图上绘制三个数据集

于 2013-05-16T20:54:50.183 回答