How to plot array with result of roots?
이전 댓글 표시
%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
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
