Skip to content
Merged

dev #102

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/tools.jl
Original file line number Diff line number Diff line change
Expand Up @@ -870,11 +870,11 @@ function smooth(smoothing::Smoother,
function smooth(smoothing::Smoother,
X::Matrix{R}; dims::Int=1) where R<:RealOrComplex

(2)
(3)
function smooth(smoother :: Smoother,
S :: Union{FDobjects, FDobjectsVector})

(3)
(4)
function smooth(fsmoothing :: Smoother,
tsmoothing :: Smoother,
Y :: Union{TFobjects, TFobjectsVector})
Expand Down Expand Up @@ -1185,7 +1185,7 @@ Legend: ¹ *each column refers to a time-series on which the spectra have been c
² *depending on how the objects has been created, the matrices may be either
Hermitian or LowerTriangular. See the documentation of [CrossSpectra](@ref) and [Coherence](@ref).

Note that depending on the arguments the type of the output may loose one or two dimensions.
Note that, depending on the arguments, the type of the output may loose one or two dimensions.
For instance,
- if the [Spectra](@ref) object holds only one spectrum, (1.1) will output a column vector and (2.1) a vector of column vectors.
- if `frange` points to a single frequency, (1.1) will output a row vector and (2.1) a vector of row vectors.
Expand Down
Loading