gistlib
main.msyms x; n = 5; % number of coefficients f = gamma(x) ^ -1; taylor_coeffs = taylor(f, x, 'Order', n, 'ExpansionPoint', 0); disp(taylor_coeffs); 143 chars6 lines
syms x; n = 5; % number of coefficients f = gamma(x) ^ -1; taylor_coeffs = taylor(f, x, 'Order', n, 'ExpansionPoint', 0); disp(taylor_coeffs);
gistlibby LogSnag