Select a point in Scope Graph
古いコメントを表示
How do I select a point in the graph generated using the scope? I want to know the magnitude of the graph.
採用された回答
その他の回答 (3 件)
Paulo Silva
2011 年 3 月 1 日
Here's one way I just learned using the simplot function, example
vdp
set_param(gcs, 'SaveOutput', 'on')
set_param(gcs, 'SaveFormat', 'StructureWithTime')
sim(gcs)
simplot(yout)
I'm sorry for discovering this only now but it works great :)
Kai Hao Then
2011 年 3 月 1 日
0 投票
2 件のコメント
Paulo Silva
2011 年 3 月 1 日
%in diferent axes
subplot(311)
plot(simout.time,simout.signals.values)
subplot(312)
plot(simout1.time,simout1.signals.values)
subplot(313)
plot(simout2.time,simout2.signals.values)
%in the same axes
hold on
plot(simout.time,simout.signals.values)
plot(simout1.time,simout1.signals.values)
plot(simout2.time,simout2.signals.values)
legend('simout','simout1','simout2')
Kai Hao Then
2011 年 3 月 2 日
Angelina
2024 年 8 月 28 日
0 投票
bagaimana cara mengembalikan workspace pada matlab
カテゴリ
ヘルプ センター および File Exchange で Graphics Object Properties についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!