You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Computes summary statistics for the node densities from an `EnsembleSolution` to a [`CellProblem`](@ref).
130
+
Computes summary statistics for the node densities from an `EnsembleSolution` to a [`CellProblem`](@ref). Any
131
+
negative values are set to zero.
131
132
132
133
# Arguments
133
134
- `sol::EnsembleSolution`: The ensemble solution to a `CellProblem`.
@@ -140,6 +141,7 @@ Computes summary statistics for the node densities from an `EnsembleSolution` to
140
141
- `alpha::Float64 = 0.05`: The significance level for the confidence intervals.
141
142
- `interp_fnc = (u, t) -> LinearInterpolation{true}(u, t)`: The function to use for constructing the interpolant.
142
143
- `smooth_boundary::Bool = true`: Whether to use the smooth boundary node densities.
144
+
- `extrapolate = false`: Whether to allow for extrapolation when considering evaluating outside the range of cells for a given time and a given simulation.
143
145
144
146
# Outputs
145
147
- `q::Vector{Vector{Vector{Float64}}}`: The node densities for each cell simulation.
@@ -156,7 +158,8 @@ function node_densities(sol::EnsembleSolution;
0 commit comments