How to a two plot in same x value for different y value?
1 次查看(过去 30 天)
显示 更早的评论
I write a matlab program as follow
clear all;clc;
file1;
y=0;
for t=1:100
y=y+2;
end
plot(y,'b','linewidth',3);
in file1.m has following program
k=0;
for t=1:100
k=k+1;
end
plot(k,'r','linewidth',3);
I want to got a single plot while calling a file1 its blue colour plot after that the plot has red colour in same x axis value.
采纳的回答
Cris LaPierre
2020-3-29
If you have 15 minutes, I suggest going through Chapter 9 of MATLAB Onramp. It will introduce you to plotting in MATLAB.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!