How to plot array with result of roots?
Afficher commentaires plus anciens
%fv=Pv³-(10+5P)v²+3v-15;
P=1:0.1:10;
A=P;
B=-(10+5P);
C=3;
D=-15;
fv=[A B C D];
v=max(roots(fv));
How do I plot the graph for v vs P? I use plot(v,P) but it didn't show the figure for the plot
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
