How to plot the graph for different values of parameters?

20 vues (au cours des 30 derniers jours)
parag gupta
parag gupta le 19 Juil 2019
Commenté : Jerry121 le 10 Oct 2020
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.

Réponses (1)

Mario Chiappelli
Mario Chiappelli le 19 Juil 2019
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 commentaires
parag gupta
parag gupta le 19 Juil 2019
" c " is the parameter in my model. For " c = 1" I will get one graph, when I will run the same program for " c = 10 " I will get other graphs. Now I want both graphs in one graphs.
The code u mentioned above is for something else.
Jerry121
Jerry121 le 10 Oct 2020
Having similar issue, Did you get the solution for this?

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by