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
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
ya azzi its a frequency response,it represents non stability regions during power flow
You can't just draw this plot, you must provide the frequency response
MATLAB might be more appropriate if you want to control the line styles. See Specifying Line Style.
I know to plot different graphs with line specified ,but how to get the same shape as i have posted
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.)
Pat: Are you asking us to identify the function that has been plotted? That might be difficult to do.
0 Comments