How to plot scatter plot?

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.

 Accepted Answer

Mischa Kim
Mischa Kim on 24 Mar 2014
Edited: Mischa Kim on 24 Mar 2014
Alex, use
v = [91.25,182.5,365];
A = [2.3,3.3,4.6];
scatter(A.^2,v)

More Answers (0)

Asked:

on 24 Mar 2014

Commented:

on 24 Mar 2014

Community Treasure Hunt

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

Start Hunting!