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 fftab object.

repr

For can_repr(), a character vector specifying representations ("polr", "rect", "cplx").

Details

Value

See Also

to_cplx(), has_cplx()

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]