powered by
fftab
These functions check if specific representations are present in a fftab object:
has_cplx(x)has_rect(x)has_polr(x)
has_rect(x)
has_polr(x)
Logical value (TRUE or FALSE) indicating whether the specified representation exists.
TRUE
FALSE
A fftab object.
has_cplx(): Checks if the object has complex representation (fx column).
has_cplx()
fx
has_rect(): Checks if the object has rectangular representation (re, im columns).
has_rect()
re
im
has_polr(): Checks if the object has polar representation (mod, arg columns).
has_polr()
mod
arg
to_cplx(), get_repr()
to_cplx()
get_repr()
fftab(c(1, 0, -1, 0)) |> has_cplx() fftab(c(1, 0, -1, 0)) |> has_rect() fftab(c(1, 0, -1, 0)) |> has_polr()
Run the code above in your browser using DataLab