How to insert data in taylor series?

1 Ansicht (letzte 30 Tage)
Byeong Hui
Byeong Hui am 19 Apr. 2014
Beantwortet: Walter Roberson am 19 Apr. 2014
I want to know e(error).
But, I can not insert x and y value into Taylor series.
This is my code.
syms x y z
f = x*y^2;
U=taylor(f,[x,y],[6,11],'order',2');
x = input('What is your x -axis value ?');
y = input('What is your y -axis value ?');
z=x*y^2
e=(U-z)/U*100;
How to insert x and y value into U equation that is result of taylor series?
I want to calculate error at x =5 and y = 10.

Antworten (1)

Walter Roberson
Walter Roberson am 19 Apr. 2014
subs(e, {x, y}, {5, 10})
You would probably want to double() the result.

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by