Is MonteCarloProblem() still working at present?

From mathematical optimization - Parameter estimation of multiple datasets in julia DifferentialEquations - Stack Overflow, I tried the example in Julia. But Julia told me that MonteCarlo function have not been defined.

The function for Monte Carlo problems is strange and bugs are coming over and over again. First I tried to add “DiffEqMonteCarlo, DiffEqBase, DiffEqParamEstim”, and I also created a new personal environment to prevent the conflict between certain packages. But I don’t know why Julia also tells me that “ERROR: UndefVarError: MonteCarloProblem not defined”.

So if this function is out fo date? Or is there a alternative function to deal with problems like what is in the link?

Can you try:

julia> using DifferentialEquations
julia> MonteCarloProblem

It should print out something like “Generic function with N methods”

DiffEqMonteCarlo was removed about 5 years ago (it was pre Julia v1.0) and replaced with the ensemble interface. For details, see:

https://docs.sciml.ai/DiffEqDocs/stable/features/ensemble/

It’s very similar, with a few extensions.