Print a Class "Gauss" Object

DESCRIPTION:

Print method for class Gauss.

USAGE:

print.Gauss(x, ...) 

REQUIRED ARGUMENTS:

x
object of class "Gauss" to be printed.

OPTIONAL ARGUMENTS:

...
optional printing arguments.

VALUE:

NONE

SIDE EFFECTS:

Prints the class "Gauss" object.

DETAILS:

This is a method for the function print for objects inheriting from class "Gauss". See or for the general behavior of this function.

SEE ALSO:

, , .

EXAMPLES:

fit <- emGauss(cholesterol) 
fit$paramIter 
print(fit$paramIter)             #same 
print.Gauss(fit$paramIter)       #same 
paramIter(fit, save= 1:2)     # same 
paramIter(fit)                # gives last iteration only, by default  
param <- paramIter(fit, expand = T)     
param$mu                      # estimate of mean 
param$sigma                   # estimate of covariance