Hi,
Here is the error message: Cell contents reference from a non-cell array object.
Error in propval (line 120)
if isempty(user_propvals{1})
As a troubleshooting test, I tried to modify the class_args in tutorial easy to cast them into a cellstr instead of a string:
class_args.train_funct_name = cellstr('train_libsvm');
class_args.test_funct_name = cellstr('test_libsvm');
When I do that, I get a different error:
Error using cross_validation>sanity_check (line 277)
Training or testing function names have to be strings
Error in cross_validation (line 139)
sanity_check(class_args);
I read in a previous tread that the propval function might have some back compatibility issues. Do you think that could be the reason for this error?
Thank you in advance for you input. It is much appreciated.
Best,
Marilyn