Can I plot three different group of signals in one XY plane?

조회 수: 1 (최근 30일)
632541
632541 2021년 2월 3일
댓글: Cris LaPierre 2021년 2월 4일
Can I plot three different group of signals in one XY plane?
Like,
First 5 signals in one plot which can be overlapped ,
6th is in one plot just below 5 signals
7-11(next 5) in other plot(overlapped) ,just below the 6th.
Can I plot these type of plots in one XY plane?

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 2월 3일
Not sure I fully understand what you want. It sounds like you want 3 separate plots in a single figure? If so, look at tiledlayout.
x = linspace(0,30);
t = tiledlayout(3,1);
% Tile 1
nexttile
hold on
plot(x,sin(x))
plot(x,sin(x/4))
hold off
% Tile 2
nexttile
plot(x,sin(x/2))
% Tile 3
nexttile
hold on
plot(x,sin(x/3))
plot(x,cos(x))
hold off
  댓글 수: 3
632541
632541 2021년 2월 4일
How to use time series signals from simulink to workspace in plot?
plot(t,y);
Consider y is timeseries signal from simulink to workspace.
Cris LaPierre
Cris LaPierre 2021년 2월 4일
I'm not very familiar with Simulink. Perhaps this example has the information you need?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Generation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by