Solve IVP with Taylor method of order
Show older comments

I wanna implement this into a code.
My code is followed by :
- syms x y(x)
- f = y(x) - x^3 + x + 1
- df = diff(f, x)
- f = subs(df, diff(y(x), x), f)
and it gives OUTPUT
- f = x + y(x) - 3*x^2 - x^3 + 2
What I am trying to do is change y(x) (symfun) to new y variable
so that I can use the function of f(x,y) = x + y - 3*x^2 - x^3 + 2; to plug f(a,b) into x and y variable.
1 Comment
Torsten
on 24 Jun 2022
So what's your numerical method to solve the IVP ?
y_(n+1) = y_n + dx*y_n' + dx^2/2 * y_n''
?
Accepted Answer
More Answers (0)
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!