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.
Trying to concretize a GhostDerivativeOperator as a BandedMatrix is throwing an error for me:
using DiffEqOperators
using SparseArrays
using BandedMatrices
Δ = CenteredDifference(2, 2, 0.1, 7);
bc = Neumann0BC(0.1, 1);
#this works
display(sparse(Δ*bc))
#this fails
BandedMatrix(Δ*bc)
Trying to concretize a
GhostDerivativeOperator
as aBandedMatrix
is throwing an error for me:Output:
The text was updated successfully, but these errors were encountered: