R/distance.R

Defines functions distance

Documented in distance

distance <-
function(x,y) {
        z=sqrt((x/max(x))^2 + (y/max(y))^2);
        z;
}

Try the ops package in your browser

Any scripts or data that you put into this service are public.

ops documentation built on May 1, 2019, 7:55 p.m.