如何利用matlab把1⼀(x+1)展开成x-1的泰勒幂级数?

2025-03-30 07:55:13
推荐回答(1个)
回答1:

syms x;
f=1/(x+1);
taylor(f, x, 'ExpansionPoint', 1)