Error while using pdist function
显示 更早的评论
X=[1,1;2,2;3,3]
D = pdist(X,Distance)
#This command shows the following error:
Unrecognized function or variable 'Distance'.
Did you mean:
>> D = pdist(X,distance)
#If i try running with distance, the following error is displayed:
Error using distance
Not enough input arguments.
What is the correct way to use distance?
回答(1 个)
You cannot use whatever the word you want. There are specified words which are methods of getting the distance.
X=[1,1;2,2;3,3]
D = pdist(X,'euclidean')
类别
在 帮助中心 和 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!