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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Scatter Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by