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 |
Details
-
has_cplx()
: Checks if the object has complex representation (fx
column). -
has_rect()
: Checks if the object has rectangular representation (re
,im
columns). -
has_polr()
: Checks if the object has polar representation (mod
,arg
columns).
Value
Logical value (TRUE
or FALSE
) indicating whether the specified representation exists.
See Also
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]