MATLAB Error - Undefined function or method 'fitcsvm' for input arguments of type 'double' [duplicate]

StackOverflow https://stackoverflow.com/questions/22741857

  •  24-06-2023
  •  | 
  •  

문제

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?

도움이 되었습니까?

해결책

It is a function available in Matlab 2014 alone as of now. Check your version of matlab and statistical tool box you have.

다른 팁

That error means that there is no such function. Since the function is part of the Machine Learning Toolbox, it is very likely you don't own this toolbox. Look for it using the ver command in you command window.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top