?? Undefined function or method 'svd' for input arguments of type 'double' and attributes 'full 3d real'.
Mostrar comentarios más antiguos
can someone assist me? i am trying to use the matlabs svd function but it returned an error
"?? Undefined function or method 'svd' for input arguments of type 'double' and attributes 'full 3d real'.".
here is part of the code i was working on:
F=imread(irisFileName); G=im2double(F);
%perform singular value decomposition
xpattern=svd(G);
P=[xpattern' str2num(irisFiles(i).name(1:3))];
T=[T;P];
irisFileName
[size(P) size(T)]
end
end
thanks
Respuestas (2)
Wayne King
el 22 de Mzo. de 2013
Editada: Wayne King
el 22 de Mzo. de 2013
svd() only works on a 2-D matrix, although I'm surprised by your error message.
I would have expected:
"Error using svd Input must be 2-D."
You are using the MathWorks' svd() function, correct?
If you enter,
>>which svd
you get back some path like:
...matlab\matfun\@single\svd
6 comentarios
ibrahim
el 22 de Mzo. de 2013
Wayne King
el 22 de Mzo. de 2013
so is your input 3-D? what is the size of G?
ibrahim
el 22 de Mzo. de 2013
Wayne King
el 22 de Mzo. de 2013
The above does not tell me the size of G. The above only tells me that you have converted F to a double. What does
size(G)
return?
ibrahim
el 22 de Mzo. de 2013
ibrahim
el 22 de Mzo. de 2013
iron man
el 8 de Mayo de 2016
0 votos
im getting error "Error using svd Input must be 2-D." could u hlp me?
1 comentario
Walter Roberson
el 8 de Mayo de 2016
You are probably trying to do svd on an RGB image. You probably need to use rgb2gray() to convert it to grayscale.
Categorías
Más información sobre Entering Commands en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!