How to multiply cell matrix to obtain euclidean distance ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Abhishek H P
il 21 Mag 2016
Commentato: Abhishek H P
il 23 Mag 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 Commenti
Risposta accettata
Andrei Bobrov
il 21 Mag 2016
Modificato: Andrei Bobrov
il 21 Mag 2016
sqrt(sum((cell2mat(cellE) - cell2mat(cellD)).^2,2))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!