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
0 个评论
采纳的回答
Andrei Bobrov
2016-5-21
编辑:Andrei Bobrov
2016-5-21
sqrt(sum((cell2mat(cellE) - cell2mat(cellD)).^2,2))
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File 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!