Hello All
I am trying to solve PDE using Haar wavelets. I have built all the necessary matrices H,p, and q. I was able to get the solution for a 1-D PDE such as u '' = f (x)
Now, for a 2-D problem, I took the Kronecker product of all the matrices mentioned above, H,p, and q, and solved it in a higher-dimensional space. The size of the matrix became N^2*N^2. I got the correct solution.
However, is there any way to solve a 2-D problem using an N*N matrix size?
my method starts by assuming uxx=sum of c* H(x,y)
where H(x,y)=kron(H,H) where H is N*N matrix represent haar wavelets in 1-D. H(x,y) becomes N^2*N^2
I see some papers using uxx=sum of c* H(x)*H(y). I tried this method, but I was not able to get the correct solution. I think in this way they are using the same matrix size(H)=N*N
I need more details for this method, and if there is a code, I would appreciate it.