Effacer les filtres
Effacer les filtres

only one answer for for loop

2 vues (au cours des 30 derniers jours)
Abhijit Sardar
Abhijit Sardar le 4 Jan 2021
Commenté : Matt J le 5 Jan 2021
i have i*1182 an array A.i want make another array such every single element of the array A is printed 50 times so that i will another array with length of 1182*50 = 59100
for w = 1:1182
z = repmat(ult(w),1,50);
end
ult is 1*1182 array

Réponse acceptée

Matt J
Matt J le 4 Jan 2021
Modifié(e) : Matt J le 4 Jan 2021
This should really be done without a for-loop,
z = repmat(ult(:),1,50);
But if you insist on using a for-loop, you must tell the code where in z the result of each iteration is to be assigned,
for w = 1:1182
z(w,:) = repmat(ult(w),1,50);
end
  4 commentaires
Abhijit Sardar
Abhijit Sardar le 5 Jan 2021
thanks this really simplified everything
Matt J
Matt J le 5 Jan 2021
You're quite welcome, but please Accept-click the answer to indicate that your problem was resolved.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by