Error while using pdist function

2 views (last 30 days)
ash fairy
ash fairy on 8 Apr 2022
Edited: KSSV on 8 Apr 2022
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?

Answers (1)

KSSV
KSSV on 8 Apr 2022
Edited: KSSV on 8 Apr 2022
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]
X = 3×2
1 1 2 2 3 3
D = pdist(X,'euclidean')
D = 1×3
1.4142 2.8284 1.4142

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!