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
Congrats for the great work you are doing in the DiffEqOperators package. I was trying to create a 2D Laplacian matrix, but I can’t seem to manage to be able to concretize it to the right Array.
MWE (Win10, julia 1.6, DiffEqOperators 4.29.0)
n = 10
Lxx = CenteredDifference{1}(2,2,1.,n)
Lyy = CenteredDifference{2}(2,2,1.,n)
D = Lxx + Lyy
Mxx = Array(D.ops[1], (n,n))
Myy = Array(D.ops[2], (n,n))
D = Lxx + Lyy
heatmap(Array(D, (n,n)))
Congrats for the great work you are doing in the DiffEqOperators package. I was trying to create a 2D Laplacian matrix, but I can’t seem to manage to be able to concretize it to the right Array.
MWE (Win10, julia 1.6, DiffEqOperators 4.29.0)
Image I get:

Image I'd expect:
