How to plot this on a graph

3 ビュー (過去 30 日間)
DARREN O BRIEN
DARREN O BRIEN 2020 年 10 月 30 日
コメント済み: Ameer Hamza 2020 年 10 月 31 日
how do u plot this between 0 and 2
syms n x
F = symsum(1/factorial(n),n,1,5)

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 10 月 30 日
There is no 'x' in your expression inside symsum(). I guess you are tyring to plot taylor series of exp(x). Try this
syms n x
F = symsum(x^n/factorial(n),n,0,5);
fplot(F, [0 2])
  9 件のコメント
DARREN O BRIEN
DARREN O BRIEN 2020 年 10 月 30 日
sorry for the confusion but in the question we are given its plot the corresponding polynomial over the range 0 ≤ x ≤ 2
Ameer Hamza
Ameer Hamza 2020 年 10 月 31 日
But how do you define the polynomial from the series of 1/n!. If you look at my original answer. It does create a polynomial.

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by