필터 지우기
필터 지우기

How to quickly save a matrix by adding rows?

조회 수: 6 (최근 30일)
Benson Gou
Benson Gou 2021년 6월 22일
댓글: Stephen23 2021년 6월 22일
Dear All,
I calculate a row Ai and save it in my defined matrix A using the following way:
A = [A; Ai];
But I foud it took a lot of time. Is there a faster way?
Thanks a lot.
Benson

채택된 답변

dpb
dpb 2021년 6월 22일
Yes. Preallocate the array and index into it...without context it's conjecture what you have/are doing, but the general idea is
A=zeros(max(variable_i),size(A,2)); % preallocate A as array of zeros
for i=1:max(variable_i) % for the loop size each i
% whatever to compute Ai
...
A(i,:) = Ai; % store the new row in A
end
The above will not show degradation in speed as i increases.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by