This commit is contained in:
Markus Schmidt 2026-01-06 14:05:44 +01:00
commit 4c92446409
74 changed files with 169041 additions and 0 deletions

View file

@ -0,0 +1,8 @@
%% calculate -Laplacian of a function
syms x y c ;
u = x*x*sin(2.5*pi*y)
f = simplify(-laplacian(u,[x,y]))
fsurf(u,[0,1,0,1])
xlabel("x");ylabel("y");