How to plot two vectors at the same time
1 回表示 (過去 30 日間)
古いコメントを表示
Use these variables to plot the graphical representation of the polynomial.
To that end, you must use the function plot, using two parameters, 1)
the vector created in step b and 2) the polyval function (also with two
parameters, the vectors created in steps a and b, in that order).
v1 = [1 -2 -5 6] % vector from exercise A
v2 = [-100 : .1 : 100 ] % vector from excercise B
0 件のコメント
採用された回答
Sam Chak
2022 年 4 月 17 日
@Jonas Morgner, Do you mean llke this?
v1 = [1 -2 -5 6];
v2 = -100 : .1 : 100;
y = polyval(v1, v2);
plot(v2, y)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Polynomials についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!