Filter löschen
Filter löschen

RESHAPE

1 Ansicht (letzte 30 Tage)
Pranoy
Pranoy am 9 Feb. 2012
i have an array of binary numbers of size(1*32768)... i need to reshape this to another array of size(4096*8) with the first 8 binary digits of the previous array as the first row of the new array....how to do this????

Antworten (1)

Walter Roberson
Walter Roberson am 9 Feb. 2012
reshape(A, [8 4096]) .'
You must do it this way in order to have the bits come out row-wise.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by