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!