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 次查看(过去 30 天)
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

采纳的回答

Les Beckham
Les Beckham 2020-8-2
A = [1; 6; 2];
scatter(1:length(A), A);

更多回答(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