Element replacement of matrix.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Usha Silwal
le 11 Sep 2019
Réponse apportée : David K.
le 11 Sep 2019
How do I replace each element in third row of the 5*4 matrix with its corresponding column number using for loop?
0 commentaires
Réponse acceptée
David K.
le 11 Sep 2019
If using a for loop is not actually a requirement you can do this very simply as such:
myMatrix = rand(5,4); % create 5x4 matrix
myMatrix(3,:) = 1:4; % replace values
If the for loop is a requirement:
myMatrix = rand(5,4); % create 5x4 matrix
for n = 1:4
myMatrix(3,n) = n;
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur NaNs 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!