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