Partial sums of symbolic series?
2 ビュー (過去 30 日間)
古いコメントを表示
I am just beginning to explore the symbolic math toolbox. And I can't work out how to create a sequence of symbolic partial sums. Suppose I enter, for example:
syms t
T = taylor(exp(sin(t),t,'Order',12)
c = children(T)
The answer has the constant term at the end, instead of the start, so that
cumsum(c)
is not correct. I can write a little program to list all the partial sums:
V = []
for n=1:12
V = [V,taylor(exp(sin(t),t,'Order',n)];
end
but that seems very clumsy. Is there a better, more canonic way to do this?
Finally, with the array V above, if I display V, it's done using abbreviations, so that terms aren't repeated. How can I display V simply, in full?
0 件のコメント
回答 (2 件)
Walter Roberson
2016 年 10 月 13 日
cumsum([c(end), c(1:end-1)])
However, remember that the order of terms is not documented, so relying on children() to return them in sorted order is not robust. To get sorted order you should be looking at coeffs()
0 件のコメント
Alasdair McAndrew
2016 年 10 月 13 日
2 件のコメント
Walter Roberson
2016 年 10 月 13 日
Remember too that it is common for either odd or even powers in taylor to be 0, so the cumulative sum there should reflect the 0 terms. That would correspond to using the 'All' parameter of coeffs.
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!