get a matrix of only zero

2 visualizzazioni (ultimi 30 giorni)
Salvatore Mazzarino
Salvatore Mazzarino il 10 Nov 2012
How can I get a mattrix made of only zeros?
For example I have this matrix
[2 4 0 5 6 0]
I would get a matrix made of only zeros

Risposte (4)

Matt Fig
Matt Fig il 10 Nov 2012
A = zeros(2,5)

Walter Roberson
Walter Roberson il 10 Nov 2012
Modificato: Walter Roberson il 10 Nov 2012
NewMatrix = 0 .* OldMatrix;
(Mind you, this has a problem if any of the entries were infinite or NaN)

Matt J
Matt J il 10 Nov 2012
newmatrix=zeros(size(oldmatrix));

Matt J
Matt J il 10 Nov 2012
yourmatrix(:)=0;

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by