How do I print the following for loop as A1, A2, A3, A4?
조회 수: 11 (최근 30일)
이전 댓글 표시
for i = 1:4
print A%d, i
end
댓글 수: 0
채택된 답변
Star Strider
2017년 8월 30일
Use fprintf or sprintf.
Try this:
for i = 1:4
fprintf('A%d\n', i)
end
댓글 수: 0
추가 답변 (2개)
Walter Roberson
2017년 8월 30일
편집: Walter Roberson
2017년 8월 30일
cellstr( num2str( (1:4).', 'A%d') )
If you have R2017a or later, then consider
"A" + (1:4).'
If you have R2016b, then consider
string('A') + (1:4).'
댓글 수: 0
참고 항목
카테고리
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!