Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
Re: Transpose on ND array is not defined???
Posted:
Feb 12, 2013 11:38 AM
|
|
"sudha " <sudha@gmail.com> wrote in message news:kfdpbl$kds$1@newscl01ah.mathworks.com... > This is the code for Eigenface recognition
*snip*
> while running the pgm, this is the error m getting. > > ??? Error using ==> ctranspose > Transpose on ND array is not defined. > > Error in ==> Mio at 163 > InImage=reshape(double(InputImage)',irow*icol,1); > > what shd i do??? hw to correct the error?? plz help me out
Use the PERMUTE function instead. It is a generalization of the transpose operation, which as the error message indicates is only supported for 2-D matrices not N-D (N > 2) arrays.
-- Steve Lord slord@mathworks.com To contact Technical Support use the Contact Us link on http://www.mathworks.com
|
|
|
|