|
3 | 3 | using LinearAlgebra
|
4 | 4 | using LinearAlgebra: BlasReal
|
5 | 5 | import Base: show, summary, size, ndims, length, eltype,
|
6 |
| - *, inv, \ |
| 6 | + *, inv, \, size, step, getindex, iterate |
7 | 7 |
|
8 | 8 | # DFT plan where the inputs are an array of eltype T
|
9 | 9 | abstract type Plan{T} end
|
@@ -396,6 +396,54 @@ function ifftshift(x,dim)
|
396 | 396 | circshift(x, s)
|
397 | 397 | end
|
398 | 398 |
|
| 399 | +############################################################################## |
| 400 | + |
| 401 | + |
| 402 | +struct Frequencies{T<:Number} <: AbstractVector{T} |
| 403 | + n_nonnegative::Int |
| 404 | + n::Int |
| 405 | + multiplier::T |
| 406 | + |
| 407 | + Frequencies(n_nonnegative::Int, n::Int, multiplier::T) where {T<:Number} = begin |
| 408 | + 1 ≤ n_nonnegative ≤ n || throw(ArgumentError("Condition 1 ≤ n_nonnegative ≤ n isn't satisfied.")) |
| 409 | + return new{T}(n_nonnegative, n, multiplier) |
| 410 | + end |
| 411 | +end |
| 412 | + |
| 413 | +unsafe_getindex(x::Frequencies, i::Int) = |
| 414 | + (i-1+ifelse(i <= x.n_nonnegative, 0, -x.n))*x.multiplier |
| 415 | +@inline function Base.getindex(x::Frequencies, i::Int) |
| 416 | + @boundscheck Base.checkbounds(x, i) |
| 417 | + unsafe_getindex(x, i) |
| 418 | +end |
| 419 | + |
| 420 | +function Base.iterate(x::Frequencies, i::Int=1) |
| 421 | + i > x.n ? nothing : (unsafe_getindex(x,i), i + 1) |
| 422 | +end |
| 423 | +Base.size(x::Frequencies) = (x.n,) |
| 424 | +Base.step(x::Frequencies) = x.multiplier |
| 425 | + |
| 426 | +""" |
| 427 | + fftfreq(n, fs=1) |
| 428 | +Return the discrete Fourier transform (DFT) sample frequencies for a DFT of length `n`. The returned |
| 429 | +`Frequencies` object is an `AbstractVector` containing the frequency |
| 430 | +bin centers at every sample point. `fs` is the sample rate of the |
| 431 | +input signal. |
| 432 | +""" |
| 433 | +fftfreq(n::Int, fs::Number=1) = Frequencies((n+1) >> 1, n, fs/n) |
| 434 | + |
| 435 | +""" |
| 436 | + rfftfreq(n, fs=1) |
| 437 | +Return the discrete Fourier transform (DFT) sample frequencies for a real DFT of length `n`. |
| 438 | +The returned `Frequencies` object is an `AbstractVector` |
| 439 | +containing the frequency bin centers at every sample point. `fs` |
| 440 | +is the sample rate of the input signal. |
| 441 | +""" |
| 442 | +rfftfreq(n::Int, fs::Number=1) = Frequencies((n >> 1)+1, (n >> 1)+1, fs/n) |
| 443 | + |
| 444 | +fftshift(x::Frequencies) = (x.n_nonnegative-x.n:x.n_nonnegative-1)*x.multiplier |
| 445 | + |
| 446 | + |
399 | 447 | ##############################################################################
|
400 | 448 |
|
401 | 449 | """
|
|
0 commit comments