How to plot array with result of roots?
Mostrar comentarios más antiguos
%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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
