How to store instances of an object property in a cell array?
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rachel Anthony
el 5 de Jul. de 2018
Comentada: Guillaume
el 5 de Jul. de 2018
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 comentarios
Guillaume
el 5 de Jul. de 2018
Then Matt guessed exactly what you wanted to do and has provided the answer.
Respuesta aceptada
Más respuestas (1)
Wooshik Kim
el 5 de Jul. de 2018
Editada: Wooshik Kim
el 5 de Jul. de 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 comentarios
Ver también
Categorías
Más información sobre Data Type Identification en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!