Community Profile

photo

Tony Gillard


Last seen: 2年以上 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

Feeds

表示方法

質問


Write a MATLAB code to estimate the exponential function. Inputs should be x and n. The outputs must include approximate value, true value, error, absolute error, and relative error.
This is what I have but it's not working. function e_to_x = exp_taylor(x,n) e_to_x = 0; for k = 1:n e_to_x = e_to_x + (x^(k-...

4年以上 前 | 1 件の回答 | 0

1

回答