You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using ModelingToolkit
# Define some variables@parameters p d
@variables t X(t)
D =Differential(t)
eqs = [D(X) ~ p - d*X]
noise_eqs = [sqrt(p), sqrt(p - d*X)]
@named ssys =SDESystem(eqs, noise_eqs, t, [X], [p, d])
Basically, the noise equations just gets dropped.
The text was updated successfully, but these errors were encountered:
Not sure if this should be here or in Latexify.
Example:
Basically, the noise equations just gets dropped.
The text was updated successfully, but these errors were encountered: