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

10 lines
78 B
Matlab

syms x;
x_0 = 0;
n=4;
f(x) = 1 / (1-x)^3;
T(x) = taylor(f,x,x_0);
disp(T);