how to solve error using dtw Not enough input arguments?
Mostrar comentarios más antiguos
- function [Dist,D,k,w,rw,tw]=cdtw(r,t,pflag)
- [row,M]=size(r); if (row > M) M=row; r=r'; end;
- [row,N]=size(t); if (row > N) N=row; t=t'; end;
Error occurs: Error using dtw Not enough input arguments. How to solve this problem?
2 comentarios
Image Analyst
el 14 de Abr. de 2013
Editada: Image Analyst
el 14 de Abr. de 2013
You have not shown any code that calls or defines dtw. Please copy and paste the exact error message - ALL the red lines in the command window.
Actually I already asked this in your duplicate question: http://www.mathworks.com/matlabcentral/answers/71970#comment_143205 Why did you create a new question for it instead of following up on that one?
By the way, maybe you can go over your old questions and officially "Accept" some of them.
Vijayan G
el 11 de Mayo de 2016
Error using cdtw (line 19) Not enough input arguments.
Respuestas (1)
Vijayan G
el 11 de Mayo de 2016
0 votos
Error using cdtw (line 19) Not enough input arguments.
Categorías
Más información sobre Descriptive Statistics 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!