Make matlab save results to the same table but different rows
조회 수: 2 (최근 30일)
이전 댓글 표시
채택된 답변
Adam Danz
2021년 5월 4일
I would store the values within the while loop and then convert the array to a table using array2table.
rng('default')
x = [];
z = rand();
while z > .01
x(end+1) = z;
z = rand();
end
T = array2table(x(:),'VariableName',{'myVar'})
댓글 수: 6
Adam Danz
2021년 5월 4일
Sure, include only the relevant sections, describe the size of your data, and share any error messages you're getting.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!