how to plot graph?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
x=[10, 20 ,30,40,50]
y=[0.987, 0.972, 0.958, 0.938, 0.919]
i want to plot this point but every time giving error..plz help me
0 commentaires
Réponses (1)
Arthur Roué
le 17 Juil 2020
Modifié(e) : Arthur Roué
le 17 Juil 2020
x=[10, 20 ,30,40,50]
y=[0.987, 0.972, 0.958, 0.938, 0.919]
plot(x, y, 'LineStyle', 'none', 'Marker', '.')
Here is the plot documentation. When struggling with a function, the matlab documentation is here for you !
1 commentaire
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!