How to save 14*14 matrix in each iteration?

1 Ansicht (letzte 30 Tage)
M
M am 31 Mär. 2022
Beantwortet: Image Analyst am 31 Mär. 2022
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?

Akzeptierte Antwort

Stephen23
Stephen23 am 31 Mär. 2022
Bearbeitet: Stephen23 am 31 Mär. 2022

Weitere Antworten (1)

Image Analyst
Image Analyst am 31 Mär. 2022
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

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by