I am learning matlab and trying to plot vectors. I defined V=[3;4] to represent 3x^+4y^ and attempt to display using plot(V) hoping to see a vector from origin to (3,4) but instead the graph shows a vector from (1,3) to (2,4). Is it a problem with my plotting settings or am I not using the correct script?

1 件のコメント

KRISH
KRISH 2025 年 9 月 13 日

What is plot vectot?

サインインしてコメントする。

 採用された回答

Adam Danz
Adam Danz 2019 年 12 月 18 日
編集済み: Adam Danz 2019 年 12 月 18 日

1 投票

plot([0 3], [0,4])
% x1 x2, y1 y2
% or
quiver(0, 0, 3, 4)
% x1 y1 x2 y2

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLine Plots についてさらに検索

質問済み:

2019 年 12 月 18 日

コメント済み:

2025 年 9 月 13 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by