Multiple plots in a single X and y axis

6 ビュー (過去 30 日間)
Feniobu feniobu
Feniobu feniobu 2020 年 9 月 26 日
コメント済み: Star Strider 2020 年 9 月 26 日
Hello, I want to write a program that can plot all variables in one graph sheet. A single input variable y-axis and at least 10 input variables on the z-axis.

採用された回答

Star Strider
Star Strider 2020 年 9 月 26 日
Use the hold function.
Example —
x = linspace(1, 2, 250);
y1 = sin(2*pi*x*5);
y2 = cos(2*pi*x*7);
figure
plot(x, y1)
hold on
plot(x, y2)
hold off
grid
legend('y2','y2')
.
  4 件のコメント
Feniobu feniobu
Feniobu feniobu 2020 年 9 月 26 日
Thank you very much. It worked as wanted, but please I want to include value from say...h=[0.2 0.8]. But when I ran it the plots fell exactly on the y-axis. How can I add a second x-axis to accommodate this variables and it will show on the graph.
Star Strider
Star Strider 2020 年 9 月 26 日
My pleasure!
I do not understand wanting to add a second x-axis when they are all plotted as functions of ‘t’. You can easily concatenate ‘h’ with the rest, and it will plot correctly, just as with the others. Adding it to the legend call is trivial. Scaling the y-axis to log makes them all easily visible.

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

その他の回答 (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