How to do matrix Preallocation?

2 次查看(过去 30 天)
Hannah
Hannah 2021-8-18
编辑: Stephen23 2021-8-18
I have a matrix called 'ResultMtx'. its size is
size(ResultMtx)
ans =
792 5
I try to do Preallocation of the matrix by writing:
ResultMtx = zeros(792,5);
Then later in my program I calculate values for the matrix and define it like this:
ResultMtx = [ResultMtx; m, o, r, t, Diff_irr];
end
ResultMtx = [ResultMtx; nan nan nan nan nan];
But then the result of my matrix is all zeros. what am i doing wrong?

回答(1 个)

Stephen23
Stephen23 2021-8-18
编辑:Stephen23 2021-8-18
"what am i doing wrong?"
You are concatenating the new data onto the bottom of your preallocated matrix, rather than using indexing to allocate that data to the matrix. You need to use indexing, for example where k is the loop iteration:
ResultMtx(k,:) = [m,o,r,t,Diff_irr];
% ^^^^^ indexing!
or
ResultMtx(k,:) = NaN;
% ^^^^^ indexing!
This approach is shown in the documentation:

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by