Plotting graph with given points
17 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
basically we always plot graph of certain function such as x = 0 : 1 : 10 y = sinx; plot(x,y,'-r^')
lets say given x = 2 y = 15 x = 3 y = 8 x = 8 y = 30 the point is random, how to plot this graph?
0 commentaires
Réponse acceptée
Danny Alvarez
le 5 Août 2015
x=[2,3,8]; y=[15,8,30]; plot(x.y)
or
plot(x,y,'o') for dots
4 commentaires
Jorge Luis Dominguez Martinez
le 13 Juin 2022
Déplacé(e) : DGM
le 6 Mar 2024
From the Graph window, you can go to File -> Save as

or click on Save Figure

and then select JPEG image (*jpg) as a type
.

Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!