How to store instances of an object property in a cell array?
조회 수: 24 (최근 30일)
이전 댓글 표시
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
채택된 답변
추가 답변 (1개)
Wooshik Kim
2018년 7월 5일
편집: Wooshik Kim
2018년 7월 5일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!