DATA POINT in vertical direction
显示 更早的评论
Ηi friends i have a matrix from a few of points i want to plot this data in parallel with y direction only.
thank you
3 个评论
Geoff Hayes
2018-3-21
编辑:Geoff Hayes
2018-3-21
George - can you provide an example of your data? If you have
y = [1 2 3 4 5];
then do you want to plot as
x = repmat(2,size(y)); % example only, plotting at x=2
plot(x,y);
Please clarify.
george veropoulos
2018-3-21
Von Duesenberg
2018-3-21
Try:
plot(x,y,'ro')
回答(1 个)
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!