Hello everybody,
I am new to the forum.
I need to have access to detail documentation of some functions in DiffrentialEquations.jl package. I look into the source code in Github repository, but I could not find the function.
For example I need to know how to pass parameter to EnsembleProblem(prob,prob_func=prob_func)
in solving SDE.
function prob_func(prob, i, repeat)
remake(prob,u0=rand() * prob.u0)
end
I need to know the documentation of prob_func or the source code.
@edit works if the code structure is simple enough, but big Julia project like DifferentialEquations.jl tend to wrap the actual algorithm in several layers of argument-handling functions which can be tedious to work through using only @edit. In such cases, I find the debugger in IDEs like Atom or VSCode quite useful. In Atom, try Juno.@enter your_function() and press Step into until you reach the level of the actual algorithm.
Hello and thank you all for the above responses.
Is there a function that allows one to obtain the exact location of a Julia function in one’s file system?
Thanks!