Matlab: work with 2NxN matrix -
i have matrix 2nxn.
and want parametrs matrix. example it:
how, can it?
you may want break 12x6 matrix, 2 6x6 matrix; let's say: z
, zb
(last 1 z bar). odd rows z
, evens zb
.
considering m
combined matrices:
z = m(1:2:end,:) zb = m(2:2:end,:)
read colon(:
) operator , end
see 1:2:end
means.
hope helps.
Comments
Post a Comment