MATLAB: What is norm 2 function

norm

Sir..can i use norm 2 function for image matching based on the image features ??

Best Answer

n = norm(X) returns the 2-norm of input X and is equivalent to norm(X,2). If X is a vector, this is equal to the Euclidean distance. If X is a matrix, this is equal to the largest singular value of X.
Related Question