Effacer les filtres
Effacer les filtres

How can I add a column of zeros to a magic 5x5 matrix A to create a 5x6 matrix C?

2 vues (au cours des 30 derniers jours)
How can I add a column of zeros to a magic 5x5 matrix A to create a 5x6 matrix C? The element value in the 6th column should all be zero.

Réponse acceptée

Image Analyst
Image Analyst le 17 Juin 2014
Modifié(e) : Image Analyst le 17 Juin 2014
Try this:
A = magic(5)
C = A; % Initialize a brand new matrix called C that is the same as A.
C(5,6) = 0 % Add column 6 that is all zeros.

Plus de réponses (0)

Catégories

En savoir plus sur Operating on Diagonal Matrices 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