how can I do Iteration in matlab
Show older comments
I have an equation of the form
a(x) + x.da/dx = 2x , x= 1:1:12
f(x) is known and has different values for different x. My question is how can I find values of 'a' in matlab through iteration. Am new to matlab and any help is highly appreciated.
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 17 Nov 2012
Edited: Azzi Abdelmalek
on 17 Nov 2012
save this funnction with the name dif_eq
function da=dif_eq(x,a)
f=sin(x); for example
da=(f-a)/x;
then type in Matlab command
[x,res]=ode45(@dif_eq,[1 12],0)
5 Comments
Ede gerlderlands
on 17 Nov 2012
Azzi Abdelmalek
on 17 Nov 2012
Edited: Azzi Abdelmalek
on 17 Nov 2012
You said that f is a function of x, then replace in my code, f=sin(x) by your own function
The code I did solves your differential equation
Ede gerlderlands
on 17 Nov 2012
Ede gerlderlands
on 17 Nov 2012
Azzi Abdelmalek
on 17 Nov 2012
Ede, the problem is not a, we are looking for a. I can't use f with different values in the equation. If I find something I will post it, or someone else will do.
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!