| RcdMathLib_doc
    Open Source Library  for Linear and Non-linear Algebra | 
Examples of solving non-linear equation systems. More...
#include <stdio.h>#include <stdlib.h>#include <math.h>#include <complex.h>#include <float.h>#include "vector.h"#include "matrix.h"#include "damped_newton_raphson.h"#include "newton_raphson.h"#include "fsolve.h"Go to the source code of this file.
| Functions | |
| void | get_non_lin_sys_f1_ (vector_t x_arr[], vector_t f1_vec[]) | 
| The non-linear system f1.  More... | |
| void | get_non_lin_sys_J1_ (vector_t x_arr[], matrix_t J1[][2]) | 
| The Jacobian matrix of the non-linear system  .  More... | |
| void | get_non_lin_sys_f2_ (vector_t x_arr[], vector_t f2_vec[]) | 
| The non-linear system  .  More... | |
| void | get_non_lin_sys_J2_ (vector_t x_arr[], matrix_t J2[][3]) | 
| The Jacobian matrix of the non-linear system  .  More... | |
| void | get_non_lin_sys_f3_ (vector_t x_arr[], vector_t f3_vec[]) | 
| The non-linear system  .  More... | |
| void | get_non_lin_sys_J3_ (vector_t x_arr[], matrix_t J3[][3]) | 
| The Jacobian matrix of the non-linear system  .  More... | |
| void | fsolve_test (void) | 
| Examples of solving non-linear equation systems. | |
Examples of solving non-linear equation systems.
Solving non-linear equation systems examples (see fsolve functions).
Definition in file fsolve_test.c.
The non-linear system f1.

| [in] | x_arr[] | pointer to the  and  values. | 
| [in] | f1_vec[] | pointer to the  function values. | 
Definition at line 54 of file fsolve_test.c.
Referenced by fsolve_test().
The non-linear system  .
. 

| [in] | x_arr[] | pointer to the  ,  , and  values. | 
| [in] | f2_vec[] | pointer to the  function values. | 
Definition at line 110 of file fsolve_test.c.
References M_PI.
Referenced by fsolve_test().
The non-linear system  .
. 

| [in] | x_arr[] | pointer to the  ,  , and  values. | 
| [in] | f3_vec[] | pointer to the  function values. | 
Definition at line 174 of file fsolve_test.c.
Referenced by fsolve_test().
The Jacobian matrix of the non-linear system  .
. 

| [in] | x_arr[] | pointer to the  and  values. | 
| [in] | J1[][] | pointer to the Jacobian function  . | 
Definition at line 80 of file fsolve_test.c.
Referenced by fsolve_test().
The Jacobian matrix of the non-linear system  .
. 

| [in] | x_arr[] | pointer to the  ,  , and  values. | 
| [in] | J2[][] | pointer to the Jacobian function  . | 
Definition at line 139 of file fsolve_test.c.
Referenced by fsolve_test().
The Jacobian matrix of the non-linear system  .
. 

| [in] | x_arr[] | pointer to the  ,  , and  values. | 
| [in] | J3[][] | pointer to the Jacobian function  . | 
Definition at line 210 of file fsolve_test.c.
Referenced by fsolve_test().