using the taylor series function of matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I am trying to write a piece of code that allows me to input the numbers of terms in a taylor series and I know that i must use the "k = input('numbers of terms')" comand, when I use: (here is my code)
k = input('total number of terms in the taylor series:');
syms x;
taylor(exp(x), x, 'ExpansionPoint', k)
is k the number of terms? and if not how do i set the number of terms to be expressed?
thank you in advance.
댓글 수: 0
채택된 답변
Walter Roberson
2012년 9월 4일
taylor(exp(x), x, 'Order', k)
Note that this will expand around x=0 unless you provide an expansion point.
댓글 수: 4
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!