Given a FastTransform
object x
, t
returns the transpose of x
. If x
represents an orthonormal
transformation (i.e., if x$invertible
is TRUE
), then a FastTransform
object (representing
the transpose of x
) will be returned; otherwise, a matrix object (representing the transpose of x
)
will be returned, with a warning.
Usage
# S3 method for FastTransform
t(x)
Arguments
- x
An object of class
FastTransform
, created usingfort()
.