R/hypot.R

Defines functions `hypot`

`hypot` <-
function(x1,y1,x2,y2)
{

return( sqrt( (x1-x2)^2+(y1-y2)^2) )

}

Try the RSEIS package in your browser

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

RSEIS documentation built on Aug. 19, 2023, 5:07 p.m.