A way to replace a single number array to a double array.

Hi, there is a simple way (like array(array(:)==1)=5), to do this:
array=
[ 1
1
0
0
1 ];
to
array=
[ 1 0
1 0
0 1
0 1
1 0 ];
Andre

 Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 3 Avr 2014
Modifié(e) : Andrei Bobrov le 3 Avr 2014
a=[ 1
1
0
0
1 ];
out = [a, ~a]+0;

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Centre d'aide 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