knn search method for retrival
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I can't clearly understand that the matlab function: "Idx = knnsearch(X,Y)" searches for nearest neighbours. But what method it uses for search? I read default method is eucledain but I didn't input any method. I just used [Idx, b] = knnsearch(X,Y,'K',10). So will it use eucledainas the default method?
0 Kommentare
Akzeptierte Antwort
KSSV
am 9 Jan. 2022
The methods available are:
'euclidean' (default)
'seuclidean'
'cityblock'
'chebychev'
'minkowski'
'mahalanobis'
'cosine'
'correlation'
'spearman'
'hamming'
'jaccard'
Yes, the defualt method is euclidean.
2 Kommentare
KSSV
am 9 Jan. 2022
You need not to mention. Thr meaning of default is, if you don't use/ mention the method name default method will be used.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!