MATLAB: How to find euclidean distance

euclidean distance

i have a cell that contain 50 extraction value of image like in image that i attach
and i want to get the euclidean distance for all this value. How to make it ?

Best Answer

In order to get a Euclidean distance, you need to have two (possibly high-dimensional) points to take the distance between .
Perhaps you would like to use norm() on the vector of numeric values.