I am running
SVMModel = fitcsvm(X,Y,'KernelFunction','rbf','Standarize',true,'ClassNames',[-1,1]);
and the error I get is
Undefined function or method 'fitcsvm' for input arguments of type 'double'
I am pretty sure X and Y are matrices though:
size(X)
ans =
544 28
size(Y)
ans =
544 1
Any idea what's going on here?