Print a modelStruct Object

DESCRIPTION:

This method function applies print to each element of object .

USAGE:

print(x, ...) 

REQUIRED ARGUMENTS:

x
an object inheriting from class modelStruct, representing a list of model components, such as corStruct and varFunc objects.

OPTIONAL ARGUMENTS:

...
optional arguments passed to print.default; see the documentation on that method function.

VALUE:

the printed elements of object.

SEE ALSO:

EXAMPLES:

lms1 <- lmeStruct(reStruct = reStruct(pdDiag(diag(2), ~age)), 
   corStruct = corAR1(0.3)) 
print(lms1)