Sequence of adding numbers
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi i have like this question. Lets say i have this code : for i=1:4 C=2+i; end
this gives me this answer: C=3, C=4,C=5,C=6
BUT I want like this answer: C1=3, C2=4, C3=5, C4=6, which is with numbers after letter C. Can anyone help please...thanks :)
댓글 수: 1
Geoff Hayes
2014년 6월 11일
편집: Geoff Hayes
2014년 6월 11일
This isn't all that different from your previous question http://www.mathworks.com/matlabcentral/answers/131244-string-value-and-sequently-representation….
채택된 답변
Azzi Abdelmalek
2014년 6월 11일
편집: Azzi Abdelmalek
2014년 6월 11일
The best way is
for k=1:4
C(k)=2+k
end
Look at this link
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!