dist
R/algebra.R
simplify.dist.Rd
Default Method for simplifying a dist object. Just returns the object.
# S3 method for class 'dist' simplify(x, ...)
The dist object to simplify
Additional arguments to pass (not used)
The dist object
x <- normal(0, 1) identical(simplify(x), x) # TRUE, returns unchanged #> [1] TRUE