Community Profile

photo

Tony Gillard


Last seen: mehr als 2 Jahre vor Aktiv seit 2019

Followers: 0   Following: 0

Statistiken

Feeds

Anzeigen nach

Frage


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-...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort