frequenciesValidator {quantspec} | R Documentation |
Validates if frequencies are Fourier frequencies from
.
Description
Validation of the parameter freq
is perfomed in six steps:
Throw an error if parameter is not a vector or not numeric.
Transform each element
of the vector to
, by replacing it with
.
Check whether all elements
of the vector are Fourier frequency
,
. If this is not the case issue a warning and round each frequency to the next Fourier frequency of the mentioned type; the smaller one, if there are two.
Transform each element
with
of the vector to
, by replacing it with
.
Check for doubles and remove all but the first appearance.
Sort in ascending order.
Any subset of the six steps can be chosen, but 1 should almost always be among the steps to be performed.
Usage
frequenciesValidator(freq, N, steps = 1:6)
Arguments
freq |
the vector of frequencies to be validated. |
N |
the base of the Fourier frequencies against which the values in
|
steps |
a vector containing a subset of |
Value
Returns a vector of Fourier frequencies that is yield by the transformations described above.
Examples
freq <- 2*pi*c(3,2,5,8,9)/10
res <- frequenciesValidator(freq, N=10, steps=1:3)
res * 10 / (2*pi) # Returns: [1] 3 2 5 8 9
res <- frequenciesValidator(freq, N=10, steps=1:4)
res * 10 / (2*pi) # Returns: [1] 3 2 5 2 1
res <- frequenciesValidator(freq, N=10, steps=1:5)
res * 10 / (2*pi) # Returns: [1] 3 2 5 1
res <- frequenciesValidator(freq, N=10, steps=1:6)
res * 10 / (2*pi) # Returns: [1] 1 2 3 5