DATA POINT in vertical direction
Afficher commentaires plus anciens
Η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 commentaires
Geoff Hayes
le 21 Mar 2018
Modifié(e) : Geoff Hayes
le 21 Mar 2018
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
le 21 Mar 2018
Von Duesenberg
le 21 Mar 2018
Try:
plot(x,y,'ro')
Réponses (1)
george veropoulos
le 21 Mar 2018
0 votes
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!