Divide your plot to four quarters and plot each of the four curves in a separate quarter of the plot.

40 ビュー (過去 30 日間)
How to do i divide my plot into different quarters
  4 件のコメント
Rik
Rik 2019 年 4 月 6 日
What do you mean by dividing a function?
Abdel Rahman   Attia
Abdel Rahman Attia 2019 年 4 月 6 日
Not dividing A function, It's ploting the function and dividing that plot into four quarters .

サインインしてコメントする。

採用された回答

A. Sawas
A. Sawas 2019 年 4 月 6 日
The only way to create multiple plots in a figure is to use subplots as mentioned by per isakson
You need to decide how to divide the plot then plot each part on a separeat subplot.
For example the following code divides a sin signal into four parts:
t=linspace(0,2*pi);
d=floor(length(t)/4);
t1=t(1:d);
t2=t((1:d)+d);
t3=t((1:d)+2*d);
t4=t((3*d+1):end);
figure;
subplot(2,2,1); plot(t1, sin(t1));
subplot(2,2,2); plot(t2, sin(t2));
subplot(2,2,3); plot(t3, sin(t3));
subplot(2,2,4); plot(t4, sin(t4));

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by