how can i change the columns in the matrix? For example I wanna change 2nd and 3rd column
Afficher commentaires plus anciens
M = [1 2 3 4; ...
2 4 6 8; ...
3 6 9 12];
3 commentaires
If you mean interchange, as Jan pointed out, you can something like this. say M has 3 columns:
M=M(:,[1 3 2]);
Check help for indexing matrices.
Image Analyst
le 9 Jan 2013
How about you change them both to zeros? Next time, give an example of what you want your output to be so people won't have to guess.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!