plotting graph in simulink
2 ビュー (過去 30 日間)
古いコメントを表示
I have to plot graphs in simulink the graphs is i the link
how can we plot the graph in simulink,if not possible in simulink ,please tell how to plot in matlab m file
0 件のコメント
採用された回答
Azzi Abdelmalek
2012 年 11 月 12 日
編集済み: Azzi Abdelmalek
2012 年 11 月 12 日
This is a plot of a step response of second order system, you can use step command in a for loop, varying the damping coefficient sigma from 0 to 1
hold on;
sigma=.5;
for k=1:5
w0=1;
sigma=sigma+.1;
N=[w0];
D=[1 2*sigma*w0 w0^2]
step(N,D)
end
grid
8 件のコメント
Azzi Abdelmalek
2012 年 11 月 17 日
You can't just draw this plot, you must provide the frequency response
その他の回答 (1 件)
Kaustubha Govind
2012 年 11 月 6 日
5 件のコメント
Walter Roberson
2012 年 11 月 9 日
You put it together yourself, calculating where all the lines should go.
There is no built-in plot of that style that I know of in MATLAB (but it is possible it exists in a toolbox somewhere or in Simulink somewhere and I just have not run across it yet.)
Kaustubha Govind
2012 年 11 月 12 日
Pat: Are you asking us to identify the function that has been plotted? That might be difficult to do.
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!