We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using DiffEqNoiseProcess #using DifferentialEquations u0 = rand(2) tgrid = 0.0:0.1:10.0 brownian_noise = randn(length(u0)*(length(tgrid)-1)) brownian_noise = reshape(brownian_noise,length(u0),length(tgrid)-1) brownian_noise = vcat([zeros(length(u0))], [c for c in eachcol(brownian_noise)]) W = NoiseGrid(tgrid,brownian_noise) prob = NoiseProblem(W, (tgrid[begin], tgrid[end]))
ERROR: UndefVarError: NoiseProblem not defined
The text was updated successfully, but these errors were encountered:
This seems to be the code example from #136.
Sorry, something went wrong.
The using using DifferentialEquations is commented out, leading to a different error.
using DifferentialEquations
oh true -- you're right. Sorry for that! (I ran them straight after each other.)
No branches or pull requests
ERROR: UndefVarError: NoiseProblem not defined
The text was updated successfully, but these errors were encountered: