how to make the X,Y for fitcsvm,as i get error using it?

조회 수: 3 (최근 30일)
Sheema Khattak
Sheema Khattak 2014년 8월 19일
댓글: Shashank Prasanna 2014년 8월 22일
SVMModel = fitcsvm(X,Y,'KernelFunction','rbf','Standarize',true,'ClassNames',{'negClass','posClass'});
Undefined function 'fitcsvm' for input arguments of type 'cell'.
In the description of fitcsvm ,Y can be a categorical or character array, logical or numeric vector, or cell array of strings is mentioned how can I build it to be ready to fit in fitcsvm. my x is 6*12 and y=[1;1;1;-1;-1;-1]; for which I get error.It also has mentioned that Y — Array of class labels with each row corresponding to the value of the corresponding row in X. Y can be a character array, categorical, logical or numeric vector, or vector cell array of strings. Column vector with each row corresponding to the value of the corresponding row in X. How can I build Y be a "character array, categorical, logical or numeric vector, or vector cell array of strings"

답변 (1개)

Shashank Prasanna
Shashank Prasanna 2014년 8월 19일
What version of MATLAB are you using? fitcsvm was introduced in MATLAB R2014a. If you are using an earlier version of MATLAB you may have to use svmtrain:
You can check the version of MATLAB by typing:
>>ver
  댓글 수: 4
Sheema Khattak
Sheema Khattak 2014년 8월 22일
Yes it is installed Statistics toolbox 8.3 and 2014a has statistics toolbox 9.0.
Shashank Prasanna
Shashank Prasanna 2014년 8월 22일
shah, this is confusing, you just mentioned that you don't have R2014a if your previous post.
In any case, if you have the toolbox you should be able to access svmtrain function. If you can't then you may have a path issue, try the following:
>> restoredefaultpath
>> rehash tolboxcache
If you still have trouble, I recommend contacting technical support. I also recommend trying some example code from the documentation directly to make sure it is not working after the above steps.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Cluster Analysis and Anomaly Detection에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by