Help with Taylor series

4 ビュー (過去 30 日間)
dav
dav 2013 年 10 月 13 日
編集済み: Image Analyst 2013 年 10 月 14 日
Hi,
Can someone please help me to get the Taylor series expansion of y=(a+bx)^1/2?
Thanks
dav
  3 件のコメント
Image Analyst
Image Analyst 2013 年 10 月 13 日
This doesn't seem to be a MATLAB question. Can it be? Like, do you want to plot the actual function and then try different numbers of terms and see how well they look like the original function?
dav
dav 2013 年 10 月 13 日
I want to get the taylor expansion of the above function simbolically.. Is it possible in matlab?

サインインしてコメントする。

採用された回答

sixwwwwww
sixwwwwww 2013 年 10 月 13 日
Dear Dav, here is the code to do it up to fifth order:
syms a b x y
y = (a + b * x)^(1/2);
TaylorSeries = taylor(y);
disp(TaylorSeries)
  4 件のコメント
dav
dav 2013 年 10 月 13 日
Thank you so much for the kind help!
sixwwwwww
sixwwwwww 2013 年 10 月 13 日
You are welcome

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParticle Swarm についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by