Show Step Response Information on Step Response Plot
古いコメントを表示
Normally, if I want to display the information of the Step Response (peak, rise time, etc). I click on the plot and select "Characteristics > Peak Response",etc. I intend to design a Gui (very basic one) that the Step Response will automatically show these information at run-time.
step(handles.axes_step,sys, stepinfo(sys)) %I have trouble with the show stepinfo on the plot. If I cannot find a way, I just let it be but I guess there should be a way.
採用された回答
その他の回答 (3 件)
Jeffry
2018 年 11 月 4 日
sys = tf(1,[1 .5]);
h = stepplot(sys);
grid on
% characteristics are those found under h.CharacteristicManager.CharacteristicID
h.showCharacteristic('PeakResponse')
h.showCharacteristic('RiseTime')
1 件のコメント
James Richard
2018 年 11 月 22 日
Go to
[Your Installation Directory]\toolbox\shared\controllib\graphics\@wrfc\@plot\
for more information on this topic
because showCharacteristic.m file is also available there
Tekno
2018 年 3 月 6 日
0 投票
dear Jonathan LeSage i have data in figure , how can i get the step info from it? im using matlab 2015 version, please your support.
SimTec
2018 年 5 月 24 日
0 投票
what if we don't have the math model in my case, I saved data to "to Workspace" but got erros
カテゴリ
ヘルプ センター および File Exchange で Classical Control Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!