How to save 14*14 matrix in each iteration?

How to save 14*14 matrix in each iteration?
There are 128 iterations and in each iteration there is a matrix named Vd with size 14*14 updated.
How can I save the Vd matrix in each iteration in a perefect way? So I can also perform calculations on these saved matrices by one time?

 채택된 답변

Stephen23
Stephen23 2022년 3월 31일
편집: Stephen23 2022년 3월 31일

0 개 추천

N = 128;
C = cell(1,N);
for k = 1:N
.. your code
C{k} = Vd;
end

추가 답변 (1개)

Image Analyst
Image Analyst 2022년 3월 31일

0 개 추천

You can use a 3-D array:
numZ = 128;
allVd = zeros(14, 14, numZ); % Declare an array to hold all 128 of the Vd.
for k = 1 : numZ
% Code to get a new Vd.
Vd = whatever.......
% Then store Vd in the k'th slice of the 3-D array:
allVd(:, :, k) = Vd;
end

카테고리

도움말 센터File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

질문:

M
M
2022년 3월 31일

답변:

2022년 3월 31일

Community Treasure Hunt

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

Start Hunting!

Translated by