Files
labor_mathematische_anwendu…/MATLAB/Uebungen/02 Symbolic Math Toolbox/Aufgabe 5/Aufgabe5_b.m

10 lines
70 B
Matlab

syms x;
x_0 = 1;
n=5;
f(x) = 3^x;
T(x) = taylor(f,x,x_0);
disp(T);