From 33e3dd3076b95b35070f0e9037519f73b8b05a86 Mon Sep 17 00:00:00 2001 From: thorek1 Date: Mon, 11 Sep 2023 00:09:52 +0200 Subject: [PATCH] mean also for linear sol --- src/get_functions.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/get_functions.jl b/src/get_functions.jl index 2def76be..26a9bc64 100644 --- a/src/get_functions.jl +++ b/src/get_functions.jl @@ -2318,9 +2318,9 @@ cov = get_covariance """ -Wrapper for [`get_moments`](@ref) with `mean = true`, the default algorithm being `:pruned_second_order`, and `non_stochastic_steady_state = false, variance = false, standard_deviation = false, covariance = false` +Wrapper for [`get_moments`](@ref) with `mean = true`, and `non_stochastic_steady_state = false, variance = false, standard_deviation = false, covariance = false` """ -get_mean(args...; kwargs...) = get_moments(args...; algorithm = :pruned_second_order, kwargs..., variance = false, non_stochastic_steady_state = false, standard_deviation = false, covariance = false, mean = true)[1] +get_mean(args...; kwargs...) = get_moments(args...; kwargs..., variance = false, non_stochastic_steady_state = false, standard_deviation = false, covariance = false, mean = true)[1] # """