Retrieve the mean of a mvn object.
# S3 method for class 'mvn'
mean(x, ...)
Arguments
- x
The mvn object to retrieve the mean from
- ...
Additional arguments to pass (not used)
Value
The mean of the mvn object
Examples
X <- mvn(c(1, 2, 3))
mean(X)
#> [1] 1 2 3