We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b022b0 commit b702701Copy full SHA for b702701
src/MATLABDiffEq.jl
@@ -44,13 +44,13 @@ function DiffEqBase.__solve(
44
else
45
u0 = prob.u0
46
end
47
-
+
48
callback !== nothing && error("Callbacks are not supported in MATLABDiffEq.jl")
49
50
sys = modelingtoolkitize(prob)
51
52
- matstr = ModelingToolkit.build_function(sys.eqs,sys.states,
53
- sys.ps,sys.iv,
+ matstr = ModelingToolkit.build_function(equations(sys),states(sys),
+ parameters(sys),independent_variable(sys),
54
target = ModelingToolkit.MATLABTarget())
55
56
# Send the variables
0 commit comments