I want to plot multiple graphs in a single plot with some space between each signal

6 次查看(过去 30 天)
I want to plot multiple graphs in a single plot with some space between each signal
  7 个评论

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2018-9-14
How about adding some number to the y values and plotting?
A = rand(10,10) ;
figure
hold on
x = 1:10 ;
for i = 1:10
plot(x,A(i,:)+i)
end
  6 个评论
sandhya sandhya
sandhya sandhya 2018-9-15
I attached my mat files and i want to plot all these mat signals in a single plot(like the plot in your previous comment)and i think we should reduce the amplitude of the signals also.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by