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
{{ message }}
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
When I was trying to run the Examples I kept on getting the error discretize not defined until I found that it's a function of the OrdinaryDiffEq package which is called after the function is called.
Also, for the part
for i in 1:length(t)
plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i]),label="Numerical, t=$(t[i])")
scatter!(x, u_exact(x, t[i]),label="Exact, t=$(t[i])")
end
I get a MethodError: no method matching SparseMatrixCSC(::RobinBC{Float64,Array{Float64,1}}).
I'm using Julia Version 1.4.2 (2020-05-23)
The text was updated successfully, but these errors were encountered:
Mrc010
changed the title
Small mistake in examples
Few errors when running examples
Jan 26, 2021
It probably requires Julia v1.5. But we should put a WIP note on that example: that's part of the unreleased interface for auto PDE solving. Exciting, but not complete.
I made the docs much more clear about what's a work in progress. This piece is definitely not ready for the average user. I also cleaned up the docs a bunch and added the required using OrdinaryDiffEq there, but I think this was missing a test and regressed.
It probably requires Julia v1.5. But we should put a WIP note on that example: that's part of the unreleased interface for auto PDE solving. Exciting, but not complete.
Getting the same error with Julia Version 1.5.3 (2020-11-09).
When I was trying to run the Examples I kept on getting the error
discretize not defined
until I found that it's a function of the OrdinaryDiffEq package which is called after the function is called.Also, for the part
I get a
MethodError: no method matching SparseMatrixCSC(::RobinBC{Float64,Array{Float64,1}})
.I'm using Julia Version 1.4.2 (2020-05-23)
The text was updated successfully, but these errors were encountered: