필터 지우기
필터 지우기

Help with Taylor series

조회 수: 1 (최근 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 CenterFile Exchange에서 Particle Swarm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by