How do a write a loop code in MATLAB?
    조회 수: 1 (최근 30일)
  
       이전 댓글 표시
    
How do I impliment a "for loop" into this code?
for r = 1 : numPlotsR
    for c = 1 : numPlotsC   
        subplot(numPlotsR, numPlotsC, plotIndex);
        rgbBlock = ca{r,c};        imshow(rgbBlock); 
        [rowsB, columnsB, numberOfColorBandsB] = size(rgbBlock);
        caption = sprintf('Block #%d of %d\n%d rows by %d columns', ...
            plotIndex, numPlotsR*numPlotsC, rowsB, columnsB);
        title(caption);        drawnow;
        xlswrite(NewID,rgbBlock);
        plotIndex = plotIndex + 1;
        img1=rgbBlock;
        imshow(img1)
댓글 수: 1
  Bob Thompson
      
 2018년 11월 26일
				I don't understand your question. You have two for loops set up already for the code. What do you mean by, "impliment a 'for loop' into this code?"
채택된 답변
추가 답변 (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!