Element-wise inverse square root on numeric or complex vectors (or objects which can be coerced to them).
Usage
# S3 method for default
rsqrt(x)
Arguments
- x
a numeric or
complex
vector or array.
Details
rsqrt(x)
is equivalent to 1 / sqrt(x)
where sqrt()
is the
default square root function, i.e. \(1/\sqrt{x}\).