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
eg. lorenz
function lorenz!(du,u,p,t) σ,ρ,β = p du[1] = σ*(u[2]-u[1]) du[2] = u[1]*(ρ-u[3]) - u[2] du[3] = u[1]*u[2] - β*u[3] end
modify to :
function lorenz!(du,u,p,t) σ,ρ,β = p x,y,z = u du[1] = σ*(y-x) du[2] = x*(ρ-z) -y du[3] = x*y - β*z end
better or worse?
The text was updated successfully, but these errors were encountered:
Yes that's reasonable.
Sorry, something went wrong.
No branches or pull requests
eg. lorenz
modify to :
better or worse?
The text was updated successfully, but these errors were encountered: