MATLAB: What is meaning of this plzz tell me

plzz ans my question i

feat=[]; class=[];

Best Answer

Those assignments set the ‘feat’ and ‘class’ variables to empty arrays [].
Note that class (link) is a MATLAB function, and assigning a variable the same name ‘overshadows’ it. This will cause problems later if you want to use the class function.
Related Question