Hi,
I’m using prtools ver.4.1.4 on Matlab ver.7.8.0.347 (R2009a) and I encounter a conflict with the mtimes function.
I’m trying to train a batch of classifiers with a batch of datasets (see below).
This code snippet should normally work with prtools, right?
>> A=gendatm;
>> A2=gendatm;
>> A={A A2}
A =
[160x2 dataset] [160x2 dataset]
>> w1=qdc;
>> w2=ldc;
>> w={w1 w2}
w =
[0x0 mapping] [0x0 mapping]
>> R=A*w;
??? Undefined function or method 'mtimes' for input arguments of type 'cell'.
I reviewed a similar topic on the forum but I haven’t installed the spider toolbox, which is suggested as the problem source.

