How to save matrixes resulted from a running loop for further use in MATLAB

1 vue (au cours des 30 derniers jours)
Chaudhary P Patel
Chaudhary P Patel le 28 Mar 2023
Réponse apportée : KSSV le 28 Mar 2023
I am running a code in which for each cycle i am getting different matrix of size 30 X 30. I have to use the matrixes in the next loop so please tell me how can i save the matrix.

Réponses (1)

KSSV
KSSV le 28 Mar 2023
Let mxn be your matrix size and you are running loop ntimes. In this case you can save the matrix in the loop using the below code snippet.
A = zeros(m,n,n) ;
for i = 1:n
A(:,:,i) = % calculations/ formula
end

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by