Returns the Euclidean norm of the nonmissing arguments.
specifies a numeric constant, variable, or expression.
data _null_; x=euclid(.,3,0,.q,-4); put x=; run;
x=5
data _null_; x1 = 1; x2 = 3; x3 = 4; x4 = 3; x5 = 1; x = euclid(of x1-x5); put x=; run;
x=6