can_repr {fftab} | R Documentation |
Manage Representations of a fftab
Object
Description
These functions handle representation management for a fftab
object:
Usage
can_repr(x, repr)
get_repr(x)
set_repr(x, repr)
Arguments
x |
A |
repr |
For |
Details
-
get_repr()
: Retrieve current representations. -
can_repr()
: Check if the object supports specific representations. -
set_repr()
: Convert the object to one or more specified representations.
Value
-
can_repr()
: Logical value (TRUE
orFALSE
) indicating if the object supports the specified representations. -
get_repr()
: A character vector of current representations. -
set_repr()
: A modifiedfftab
object with the specified representation(s).
See Also
Examples
fftab(c(1, 0, -1, 0)) |> can_repr("cplx")
fftab(c(1, 0, -1, 0)) |> get_repr()
fftab(c(1, 0, -1, 0)) |> set_repr(c("polr", "rect"))
[Package fftab version 0.1.0 Index]