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 fftab object containing Fourier coefficients and associated metadata.

Details

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]