フィルターのクリア

How to plot scatter plot?

2 ビュー (過去 30 日間)
Alex
Alex 2014 年 3 月 24 日
コメント済み: Alex 2014 年 3 月 24 日
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 日
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 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by