How to plot scatter plot?

1 Ansicht (letzte 30 Tage)
Alex
Alex am 24 Mär. 2014
Kommentiert: Alex am 24 Mär. 2014
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.

Akzeptierte Antwort

Mischa Kim
Mischa Kim am 24 Mär. 2014
Bearbeitet: Mischa Kim am 24 Mär. 2014
Alex, use
v = [91.25,182.5,365];
A = [2.3,3.3,4.6];
scatter(A.^2,v)
  1 Kommentar
Alex
Alex am 24 Mär. 2014
Hey man, thank you again

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by