< Mathc matrices


Sommaire


Installer ce fichier dans votre répertoire de travail.

vgpivot2.h
'
/* ------------------------------------ */
/*  Save as :   vgpivot2.h                   */
/* ------------------------------------ */
double pivotbest_gj2Ab_mR(
double **Ab,
int pivot_r,
int pivot_c
)
{
double pivotbest = fabs(Ab[pivot_r][pivot_c]);
int best_r = pivot_r;
int best_c = pivot_c;
int r;
int c;

  for   ( r=pivot_r; r<Ab[R_SIZE  ][C0]; r++)
    for ( c=pivot_c; c<Ab[C_SIZE_A][C0]; c++) 

            if(fabs(Ab[r][c])>pivotbest)
             {
               pivotbest = fabs(Ab[r][c]);
                  best_r = r;
                  best_c = c;
             }

 if(best_r!=pivot_r)   swapR_mR(Ab,pivot_r,best_r);
 if(best_c!=pivot_c) swapC_R0_mR(Ab,pivot_c,best_c);

 return(pivotbest);
}
/* ------------------------------------ */
void zero_under_pivot_gj2Ab_mR(
double **Ab,
int pivot_r,
int pivot_c
)
{
double pivot = Ab[pivot_r][pivot_c];
int r;

  if(fabs(pivot)>ERROR_E)
    {
     mulR_mR( Ab,(1./pivot),pivot_r);

     for( r=(pivot_r+C1); r<Ab[R_SIZE][C0]; r++) 

         addR_mR( Ab,(-Ab[r][pivot_c]),pivot_r,r);
    }
}
/* ------------------------------------ */
double **zero_below_pivot_gj2Ab_mR(
double **Ab,
int pivot_r,
int pivot_c
)
{
int r;

  if(fabs(Ab[pivot_r][pivot_c])>ERROR_E)

     for( r=(pivot_r-C1); r>=R1; r--) 

        addR_mR( Ab,(-Ab[r][pivot_c]),pivot_r,r);
        
return(Ab);
}
/* ------------------------------------ */
/* ------------------------------------ */


fichier h.
 


Cet article est issu de Wikibooks. Le texte est sous licence Creative Commons - Attribution - Partage dans les Mêmes. Des conditions supplémentaires peuvent s'appliquer aux fichiers multimédias.