10 lines
78 B
Matlab
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); |