Doubt in XY Graph
Show older comments
Hi... I have the next simulink model: http://img96.imageshack.us/img96/1546/circuity.png
The results is: http://img34.imageshack.us/img34/9643/graphicsc.png
I liked that the two curves were in the same graph. How do I?
Accepted Answer
More Answers (1)
Gireg
on 28 Mar 2011
Hi, You should use the Matlab command "hold on".
Example:
hold on
plot([0,1],[0,2]);
plot([0,1],[0,3]);
I don't know if my example is understandable...
Categories
Find more on General Applications in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!