to_cplx {fftab}R Documentation

Convert a fftab Object Between Representations

Description

These functions convert a fftab object to a specified representation:

Usage

to_cplx(x, .keep = "unused")

to_rect(x, .keep = "unused")

to_polr(x, .keep = "unused")

Arguments

x

A fftab object.

.keep

Specifies which columns to retain. See dplyr::mutate().

Details

Value

A modified fftab object containing the specified representation:

See Also

has_cplx(), get_repr()

Examples

fftab(c(1, 0, -1, 0)) |> to_cplx()

fftab(c(1, 0, -1, 0)) |> to_rect()

fftab(c(1, 0, -1, 0)) |> to_polr()


[Package fftab version 0.1.0 Index]