How to store instances of an object property in a cell array?
27 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am making a class that defines a property 'Expression', which accepts vectors. Is there a way to access each instance of this property and store the vectors in a cell array? Thanks!
3 commentaires
Guillaume
le 5 Juil 2018
Then Matt guessed exactly what you wanted to do and has provided the answer.
Réponse acceptée
Plus de réponses (1)
Wooshik Kim
le 5 Juil 2018
Modifié(e) : Wooshik Kim
le 5 Juil 2018
To add on to previous answer, add to your cell array as such
result = {obj1.Expression};
result{end+1} = obj2.Experssion;
result{end+1} = obj3.Expression;
...
0 commentaires
Voir également
Catégories
En savoir plus sur Data Type Identification 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!