How to multiply cell matrix to obtain euclidean distance ?

1 次查看(过去 30 天)
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 中查找有关 Data Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by