Hi,
I tried this simple example using the toolbox that I downloaded today:
>> X=rand(5000,500); Labels = round((3*rand(5000,1))+1); % Generate random examples
>> Xtest=rand(1,500); Ltest = round((3*rand(1,1))+1); % Generate random test example
>> A=dataset(X,Labels);
>> Atest = dataset(Xtest,Ltest);
>> C = knnc(A,1); % Train a 1-NN classifier
>> labeld(Atest,C)
??? Error using ==> map.map
Too many input arguments.
Error in ==> C:\Archivos de programa\MATLAB\R2008a\toolbox\prtools\@mapping\mtimes.p>mtimes at 17
It happens when I try this too:
>> A*C
Too many input arguments.
Error in ==> C:\Archivos de programa\MATLAB\R2008a\toolbox\prtools\@mapping\mtimes.p>mtimes at 17
That did not use to happen on previous versions.
Thanks for your comments!
Luis Felipe

