Default Method for simplifying a dist object. Just returns the object.

# S3 method for class 'dist'
simplify(x, ...)

Arguments

x

The dist object to simplify

...

Additional arguments to pass (not used)

Value

The dist object

Examples

x <- normal(0, 1)
identical(simplify(x), x)  # TRUE, returns unchanged
#> [1] TRUE