How to plot matrice in a figure ?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hiba
le 20 Mar 2017
Réponse apportée : Iddo Weiner
le 20 Mar 2017
hi I want to display (plot) the following table in a figure how to do it ?
0 commentaires
Réponse acceptée
Iddo Weiner
le 20 Mar 2017
How do you want to display this data? Here's 1 idea:
pair1 = [0 1];
pair2 = [0.5 0.7];
% ...
pairN = [0.1 1.5];
data = [pair1; pair2; pairN];
bar(data)
legend('observation1','observation2','location','NW')
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D 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!