symbolic expantion in matlab
1 次查看(过去 30 天)
显示 更早的评论
hi,
I need to expand [1- (a1+b1)B ] / (1-b1B) and get a polynomial.
Can someone help me with this please?
Thanks.
采纳的回答
Walter Roberson
2013-3-8
A polynomial in which variable? A finite polynomial or an infinite one?
If you need an infinite polynomial in B, then the expression is, using MuPAD notation,
1-a1*(sum(B^n*b1^(n-1), n = 1 .. infinity))
There is no finite version unless you want an approximation.
The above was deduced by examining the taylor expansion around B=0
7 个评论
Walter Roberson
2013-3-8
What are you expecting the polynomial might look like? And which variable should it be in? Are you looking for an exact polynomial or an approximation? If an approximation, then how close does it need to be? Are there constraints on the values of a1, b1, or B ?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Special Values 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!