I want to plot a scatter plot, with v = 91.25,182.5,365 and A = 2.3,3.3,4.6.
And I want to plot a scatter plot, with A^2 for my vertical axis and v for horzital axis.

 採用された回答

Mischa Kim
Mischa Kim 2014 年 3 月 24 日
編集済み: Mischa Kim 2014 年 3 月 24 日

0 投票

Alex, use
v = [91.25,182.5,365];
A = [2.3,3.3,4.6];
scatter(A.^2,v)

1 件のコメント

Alex
Alex 2014 年 3 月 24 日
Hey man, thank you again

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

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2014 年 3 月 24 日

コメント済み:

2014 年 3 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by