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

 Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 3 Apr. 2014
Bearbeitet: Andrei Bobrov am 3 Apr. 2014
a=[ 1
1
0
0
1 ];
out = [a, ~a]+0;

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 3 Apr. 2014

Kommentiert:

am 3 Apr. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by