Structure array to array
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a structure
s(1).x = 5;
s(2).x = 6;
s(1).y = 1;
s(2).y = 8;
how can i convert this into an array of x values and an array of y values, preferably without using a for loop?
Im trying to plot(s(:).x, s(:).y) but it only plots one point hence why i ask.
0 commentaires
Réponses (2)
Azzi Abdelmalek
le 26 Sep 2013
Modifié(e) : Azzi Abdelmalek
le 26 Sep 2013
s(1).x = 5;
s(2).x = 6;
s(1).y = 1;
s(2).y = 8;
plot([s.x],[s.y])
0 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!