dae (version 3.0-32)

print.projector: Print projectors

Description

Print an object of class "projector", displaying the matrix and its degrees of freedom (rank).

Usage

# S3 method for projector
print(x, ...)

Arguments

x

The object of class "projector" to be printed.

...

Further arguments passed to or from other methods.

See Also

print, print.default, show.

projector for further information about this class.

Examples

Run this code
# NOT RUN {
## set up a 2 x 2 mean operator that takes the mean of a vector of 2 values
m <- matrix(rep(0.5,4), nrow=2)

## create an object of class projector
proj.m <- projector(m)

## print the object either using the Method function, the generic function or show
print.projector(proj.m)
print(proj.m)
proj.m
# }

Run the code above in your browser using DataCamp Workspace