Effacer les filtres
Effacer les filtres

How to deal with for loop

2 vues (au cours des 30 derniers jours)
Jack_111
Jack_111 le 14 Mai 2013
I want to ask about for loop. I have 50 matrices of Z and I want to use for loop to add them and take the average of these Z matrices.

Réponse acceptée

David Sanchez
David Sanchez le 14 Mai 2013
N_matrices = 50; % number of matrices
total = zeros( size(Z(1) ); % initialization of total addition
for k = 1:N_matrices % loop over all the matrices
total = total + Z(k); % update the addition
end % end the loop

Plus de réponses (1)

David Sanchez
David Sanchez le 14 Mai 2013
N_matrices = 50; % number of matrices total = zeros( size(Z(1) ); % initialization of total addition for k = 1:N_matrices % loop over all the matrices total = total + Z(k); % update the addition end % end the loop

Catégories

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

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by