Matlab: work with 2NxN matrix -


i have matrix 2nxn.

and want parametrs matrix. example it:

enter image description here 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

Popular posts from this blog

c++ - OpenCV Error: Assertion failed <scn == 3 ::scn == 4> in unknown function, -

php - render data via PDO::FETCH_FUNC vs loop -

The canvas has been tainted by cross-origin data in chrome only -