As I am a beginner in MATLAB and started learning on my own. So I am stuck at this piece of code. Can anyone explain to me what is happening in T, Test, and C matrix?
Basically this test.m file is a part of huge code and it is calling multisvm function but I am unable to get the idea about T, test, and C that how it is defined?
T=[ 1 10;2 20;3 30;4 40;5 50;6 66;3 30;4.1 42]; %training matrxi
test=[3 34; 1 14; 2.2 25; 6.2 63]; %test=Testing matrix
C=[1;1;2;2;3;3;2;2]; %C=Group,
results = multisvm(T, C, test);
disp('multi class problem');
disp(results);