matlab series用法,Puiseux series

Specify Direction of Expansion

Find the Puiseux series approximations using

the Direction argument. This argument lets you

change the convergence area, which is the area where series tries

to find converging Puiseux series expansion approximating the original

expression.

Find the Puiseux series approximation of this expression. By

default, series finds the approximation that

is valid in a small open circle in the complex plane around the expansion

point.

syms x

series(sin(sqrt(-x)), x)

ans =

(-x)^(1/2) - (-x)^(3/2)/6 + (-x)^(5/2)/120

Find the Puiseux series approximation of the same expression

that is valid in a small interval to the left of the expansion point.

Then, find an approximation that is valid in a small interval to the

right of the expansion point.

syms x

series(sin(sqrt(-x)), x)

series(sin(sqrt(-x)), x, 'Direction', 'left')

series(sin(sqrt(-x)), x, 'Direction', 'right')

ans =

(-x)^(1/2) - (-x)^(3/2)/6 + (-x)^(5/2)/120

ans =

- x^(1/2)*1i - (x^(3/2)*1i)/6 - (x^(5/2)*1i)/120

ans =

x^(1/2)*1i + (x^(3/2)*1i)/6 + (x^(5/2)*1i)/120

Try computing the Puiseux series approximation of this expression.

By default, series tries to find an approximation

that is valid in the complex plane around the expansion point. For

this expression, such approximation does not exist.

series(real(sin(x)), x)

Error using sym/series>scalarSeries (line 90)

Unable to compute series expansion.

However, the approximation exists along the real axis, to both

sides of x = 0.

series(real(sin(x)), x, 'Direction', 'realAxis')

ans =

x^5/120 - x^3/6 + x

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值