has_cplx {fftab}R Documentation

Check Representations of a fftab Object

Description

These functions check if specific representations are present in a fftab object:

Usage

has_cplx(x)

has_rect(x)

has_polr(x)

Arguments

x

A fftab object.

Details

Value

Logical value (TRUE or FALSE) indicating whether the specified representation exists.

See Also

to_cplx(), get_repr()

Examples

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

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

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


[Package fftab version 0.1.0 Index]