How do I plot a scatter plot where the x is the position of the element in a vector and the y is the value of the element in the vector?

1 Ansicht (letzte 30 Tage)
Hello!
I am trying to plot a scatter plot, with a single vector. For example, if I have a vector A which is [1; 6; 2], there would be three points, (1,1), (2,6), (3,2) with the x being the position of the element, and th y being the value of the element.
If this is not clear, please tell me.
Thanks!
-Kevin

Akzeptierte Antwort

Les Beckham
Les Beckham am 2 Aug. 2020
A = [1; 6; 2];
scatter(1:length(A), A);

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by