Iterative calculation of non-linear equations.

I'm a newbie in matlab.
I need to make a calculation were I estimate initial values, then with this values solve non-linear equations and at the end compare with a residual value, store the values of the calculation, and start again another loop.
Can anyone tell the best way to do this.
Thanks advance.

답변 (2개)

Brandon
Brandon 2015년 11월 9일

0 개 추천

Have you tried writing your function as an anonymous function and using the fminsearch function to minimize the equation?
y = @(x) 6*x^2
options = optimset('Display', 'iter');
[x,fval,exitflag] = fminsearch(y, 1, options);

카테고리

도움말 센터File Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기

제품

질문:

2015년 11월 9일

답변:

2015년 11월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by