MATLAB 在同一个图上绘制具有不同特征/颜色的多条线

发布于 2024-11-28 06:59:43 字数 446 浏览 1 评论 0原文

可能的重复:
在 MATLAB 中自动绘制不同颜色的线条

我有以下数据

X <25x139 double>
t <25x1 double>
names <139x1 cell>

所以本质上t 是时间,X 是每个时间间隔 139 个不同样本的矩阵,其中 name 是每个样本名称的数组。

我想(在同一轴上)绘制一系列样本与时间的关系,其中每条线都有

a)不同的颜色

b)图例名称

Possible Duplicate:
Automatically plot different colored lines in MATLAB

I have the following data

X <25x139 double>
t <25x1 double>
names <139x1 cell>

So essentially t is time, and X is a matrix of 139 different samples at each time interval, where names is an array of each of those sample names.

I want to plot (on the same axis) a range of my samples against time, where each line has

a) A different color

b) A legend name

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

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

发布评论

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

评论(1

不弃不离 2024-12-05 06:59:43

这有用吗?

plot(t,X);legend(names);

does this work?

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