Lösungen der Aufgaben rüberkopiert.

This commit is contained in:
2024-02-26 16:58:38 +01:00
parent be933b27d3
commit e81056717e
39 changed files with 449 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
syms x y;
f(x,y) = (sin(x-2)*exp(2*y)) / ((x-1)^3 * (y^2 +3)^5 );
f_x = diff(f,x);
f_y = diff(f,y);
f_xy = diff(f_x,y);
%simplify(f_t,Steps=100);
disp(f_x);
disp(f_y);
disp(f_xy);