FUNCTION NORM,x ;+ ;y=norm(x) returns the Euclidean norm of a vector x ; ;H. Rhody ;July, 2000 ;- RETURN,SQRT(TOTAL(x^2)) END