Populating an array with a vairable-output function
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
How can I concatenate the outputs of a function together, when the size of the output varies? E.g. 
fileBatch = {'File1','File2','...FileN'}
for f = 1:length(fileBatch)
    OutputInformationTable(:,:,f) = fcn(fileBtach(f))
end
where the array returned by fcn could be 1x10, 3x12, etc. My current implementation throws a fault if the size of the returned array changes across iterations of the loop (even if the second iteration returns a smaller array). I do not have enough knoweldge about the files to pre-allocate the OutputInformationTable array.
댓글 수: 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!