How to multiply cell matrix to obtain euclidean distance ?

조회 수: 1 (최근 30일)
Abhishek H P
Abhishek H P 2016년 5월 21일
댓글: Abhishek H P 2016년 5월 23일
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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2016년 5월 21일
편집: Andrei Bobrov 2016년 5월 21일
sqrt(sum((cell2mat(cellE) - cell2mat(cellD)).^2,2))

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by