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,10 @@
syms x y z;
x_0 = [1,2,3];
n=3;
f(x,y,z) = sin(x*y*z)*sinh(x*y*z);
T(x,y,z) = taylor(f,[x,y,z],x_0);
disp(T);