How to plot the graph for different values of parameters?
6 次查看(过去 30 天)
显示 更早的评论
In my mathematical model I have one parameter "c" .I got the graphs of the equations for " c = 1" but now I want the graphs for c= 1 and c = 10 in one graph so that I see the effect of c in my model i.e.to see what will happen if c is increased from 1 to 10.
Could someone pls tell me how to do that?
I have attached the code.
0 个评论
回答(1 个)
Mario Chiappelli
2019-7-19
This code worked for me in the past when comparing two graphs, essentially you need to use the hold command.
figure(1);
hold on
plot(x1,y1,"r-");
plot(x2,y2,'r--');
xlabel('xlabel');
ylabel('ylabel');
hold off
ylim([lowerLimit upperLimit]);
title('Your Title');
legend('C=1','C=10');
Hope this helps :)
2 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!