How to multiply cell matrix to obtain euclidean distance ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Abhishek H P
am 21 Mai 2016
Kommentiert: Abhishek H P
am 23 Mai 2016
cellD
[4,5,6]
[4,3,2]
cellE
[7,6,4]
[1,2,3]
I need to find euclidean distance between these ans expected
{ sqrt((7-4)^2+ (6-5)^2 +(4-6)^2);
sqrt((4-1)^2+ (3-2)^2 +(2-3)^2);
}
Please le me which function to use
I tried cellD{:}.*cellE{:} but error
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 21 Mai 2016
Bearbeitet: Andrei Bobrov
am 21 Mai 2016
sqrt(sum((cell2mat(cellE) - cell2mat(cellD)).^2,2))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!