1/02/2013

Matlab dimension change function -> reshape

Useful function ~ ^^

A = magic(3)

A =
     8     1     6
     3     5     7
     4     9     2

>> B = reshape(A, 1, 3*3)

B =
     8     3     4     1     5     9     6     7     2


No comments:

Post a Comment