add_cplx {fftab} | R Documentation |
Add Additional Representations to Fourier Coefficients
Description
These functions add additional representations to a fftab
object without removing or modifying existing representations.
Usage
add_cplx(x)
add_rect(x)
add_polr(x)
Arguments
x |
A |
Details
-
add_cplx()
: Adds a complex ("cplx"
) representation to the Fourier coefficients. -
add_rect()
: Adds a rectangular ("rect"
) representation to the Fourier coefficients. -
add_polr()
: Adds a polar ("polr"
) representation to the Fourier coefficients.
These functions are useful for working with multiple representations simultaneously without overwriting existing data.
Value
A fftab
object with the additional representation included.
See Also
Examples
matrix(1:9, 3) |>
fftab() |>
print(n = 3) |>
add_polr() |>
print(n = 3) |>
add_rect() |>
print(n = 3) |>
add_cplx() |>
print(n = 3)
[Package fftab version 0.1.0 Index]