How to plot array with result of roots?
Show older comments
%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
Accepted Answer
More Answers (0)
Categories
Find more on 2-D and 3-D Plots 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!