DataContainers
EnsembleKalmanProcesses.DataContainers.DataContainer
— TypeDataContainer{FT <: Real}
Container to store data samples as columns in an array.
EnsembleKalmanProcesses.DataContainers.PairedDataContainer
— TypePairedDataContainer{FT <: Real}
Stores input - output pairs as data containers, there must be an equal number of inputs and outputs.
Base.size
— Functionsize(c<:ConstraintType)
A constraint has size 1.
size(dc::DataContainer, idx::IT) where {IT <: Integer}
Returns the size of the stored data. If idx
provided, it returns the size along dimension idx
.
size(pdc::PairedDataContainer, idx::IT) where {IT <: Integer}
Returns the sizes of the inputs and ouputs along dimension idx
(if provided).