i am trying nonlinear for nonlinear ode using by finite difference method
Afficher commentaires plus anciens
i am trying nonlinear for nonlinear BVP using by finite difference method.
y''+a*e^y=0, y(0)=y(1)=0.
The difference equations:
\frac{y_{i+1}-2y_i+u_{i-1}}{h^2}+a* e^{y_i}=0, i=1,\dots, n-1,
Code:
maxiter=4;
lamb=1;
n=20;
Réponses (1)
You want to solve a nonlinear system of equations using Newton's method, but you didn't supply the Jacobian "df". i.e.
df{i}/dx(j) (i,j = 2,...,n-1).
1 commentaire
Torsten
le 17 Mar 2023
Works (see above).
Catégories
En savoir plus sur Ordinary Differential Equations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!