What is algorithmic difference between the MATLAB functions ClassificationDiscriminant.fit and classify to perform discriminant analysis
2 ビュー (過去 30 日間)
古いコメントを表示
MATLAB 2012b provides two functions for Discriminant Analysis (ClassificationDiscriminant.fit and classify).
obj = ClassificationDiscriminant.fit(X,Y) returns a discriminant analysis classifier based on the input variables (also known as predictors, features, or attributes) X and output (response) Y.
class = classify(sample,training,group) classifies each row of the data in sample into one of the groups in training. sample and training must be matrices with the same number of columns.
What the difference between the two functions algorithmically?
Regards, Prashanth
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Statistics and Machine Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!