loop for measuring values in different cases
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
Hi,
If I want to measure the value of something in different cases, how I do it?
because in this loop it will show previous values:
n=3; for i=1:n y(i) = i + 2 end
y = 3 y = 3 4 y = 3 4 5
I don't want to be like that above. I want the results show as follows:
y1 = 3 y2 = 4 y3 = 5
how I can do that?
Thanks
댓글 수: 0
채택된 답변
  Matt J
      
      
 2013년 4월 12일
         n=3; 
 y=nan(1,n); %PREALLOCATE!!!
 for i=1:n 
   y(i) = i + 2; 
 end;  
 sprintf('y%d = %d ', [1:n;y])
댓글 수: 0
추가 답변 (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!

