Looking through a Matlab Class
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi!
I would like to execute some actions on every object of my class, say "Island".
Is there a command in Matlab allowing this? like
for island = Island
% actions to do
end
I hope I've made myself understood :)
Thank you!
Martin
댓글 수: 0
채택된 답변
Matt J
2013년 5월 27일
if you have an array, obj, of Island objects, you would just do things like
for i=1:length(obj)
obj(i).prop=...
end
댓글 수: 0
추가 답변 (1개)
Martin
2013년 5월 27일
편집: Matt J
2013년 5월 28일
댓글 수: 4
Daniel Shub
2013년 5월 28일
@Martin, what you are asking to do seems a little bit strange (both the getting all objects and the getting the variable names). I think they are two separate questions and should be asked as such (you are likely to get better answers). In order to get the best answers, you will likely need to provide some broader insight into what you are trying to accomplish since my guess is you are too focused on the problem right now. Finally, please use the question, comment, and answer fields appropriately as it makes it easier to follow what is going on.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!