フィルターのクリア

How do i compare more than two simscape simulations runs?

1 回表示 (過去 30 日間)
Alexandru Zamfira
Alexandru Zamfira 2023 年 5 月 29 日
編集済み: Sivapriya Srinivasan 2023 年 6 月 19 日
I am trying to analyze 3 simscape data nodes by comparing them in the same graph, but it only works for 2 data nodes.
Any help please?

回答 (1 件)

Sivapriya Srinivasan
Sivapriya Srinivasan 2023 年 6 月 19 日
編集済み: Sivapriya Srinivasan 2023 年 6 月 19 日
Hello,
You can try to create two or more separate subplots in the same figure window using the subplot MATLAB function
You can also use the “hold on” command to hold the current plot while plotting another data node.
Example: for plotting 3 separate subplots
This will create three plots stacked vertically within the same figure window.
subplot(3,1,1);
plot(data_node_1);
title ('Data Node 1');
subplot(3,1,2);
plot(data_node_2);
title('Data Node 2');
subplot(3,1,3);
plot(data_node_3);
title('Data Node 3');
xlabel('Time');

カテゴリ

Help Center および File ExchangeData Logging についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by