Hello..Again
I think that my problem isnt solve yet..
Because the matrices have the form below...
A = zeros(2,2,3);
B = zeros(2,1,3);
A
,:,1) =eye(2);
A
,:,2) = [-1.5 0.1;-0.2 1.5];
A
,:,3) = [0.7 -0.3;0.1 0.7];
B
,:,2) = [1;-1];
B
,:,3) = [0.5;1.2];
and if i try to run with the 'reshape' commant..
It saw to mee the below error..
Error using ==> ctranspose
Transpose on ND array is not defined.
if anyone has an idea..pleasantly i accept it..
Thank you.
----------
Just found it..
the form command in mine case is
r = [reshape(A
,:,1)',1,[]) reshape(A
,:,2)',1,[]) reshape(A
,:,3)',1,[]) reshape(B
,:,2)',1,[]) reshape(B
,:,3)',1,[])]
I write because maybe that is useful for another friend with the same request..