How can I get dynamic naming variables? So in a loop i need variables with names A1,A2,A3...... logic?
조회 수: 1 (최근 30일)
이전 댓글 표시
답변 (1개)
CS Researcher
2016년 5월 1일
You can use eval. Try this:
for i = 1:10
eval(['A' num2str(i) ' = i;']);
end
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!