Error using taylor to find Maclaurin polynomials

2 ビュー (過去 30 日間)
Samious
Samious 2014 年 5 月 23 日
コメント済み: Samious 2014 年 5 月 24 日
Hi I have some problem with using the taylor function, this is what I did
syms x f=exp(x^2); taylor(f,5,0)
I'm want to find the fourth degree of Maclaurin polynomials with a=0
but I received this error
****************************************************
Error using sym/taylor (line 104)
Argument 'x' failed validation
@(x)isa(x,'sym')||(ischar(x)&&~any(strcmpi(x,{'Order','ExpansionPoint','OrderMode','Absolute','Relative'}))).
Error in question3 (line 5)
taylor(f,5,0)
****************************************************
The line 104 does not exist in my matlab equation

採用された回答

Mischa Kim
Mischa Kim 2014 年 5 月 23 日
Samious, how about
syms x
f = exp(x^2);
ts = taylor(f, x, 0, 'Order', 5)
  1 件のコメント
Samious
Samious 2014 年 5 月 24 日
it worked! thank :D

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by