Mathc matrices/c12b6

Un livre de Wikilivres.


Bibliothèque


Installer ce fichier dans votre répertoire de travail.

vrm.h
/* ------------------------------------ */
/*  Save as :   vrm.h                   */
/* ------------------------------------ */
/* ------------------------------------ */
/*   positive and negative numbers      */
/* ------------------------------------ */
double **r_mR(
double **A,
int      n
)
{
int      r;
int      c;

  for     (r=R1; r<A[R_SIZE][C0]; r++)
 	  for (c=C1; c<A[C_SIZE][C0]; c++)

                    A[r][c] = r_I(n);
                    
  return(A);
}
/* ------------------------------------ */
/*   positive  numbers                  */
/* ------------------------------------ */
double **rp_mR(
double **A,
int      n
)
{
int      r;
int      c;

  for     (r=R1; r<A[R_SIZE][C0]; r++)
 	  for (c=C1; c<A[C_SIZE][C0]; c++)

                    A[r][c] = rp_I(n);
 return(A);
}
/* ------------------------------------ */
/*   floating point                     */
/* ------------------------------------ */
double **rE_mR(
double **A,
int      n,
double   e
)
{
int      r;
int      c;

  for     (r=R1; r<A[R_SIZE][C0]; r++)
 	  for (c=C1; c<A[C_SIZE][C0]; c++)

                    A[r][c]  = r_E(n,e);
 return(A);
}
/* ------------------------------------ */
/* ------------------------------------ */
double **r_Q_mR(
double **Q,
int      n
)
{
double **T = r_mR(  i_mR(Q[R_SIZE][C0]-C1,
                         Q[C_SIZE][C0]-C1),n);
                      
  orth_mR(T,Q,YES);
  
  f_mR(T);
    
 return(Q);  
}
/* ------------------------------------ */
/* ------------------------------------ */
double **r_q_mR(
double **Q,
int      n
)
{
double **T = r_mR(  i_mR(Q[R_SIZE][C0]-C1,
                         Q[C_SIZE][C0]-C1),n);
                      
  orth_mR(T,Q,NO);
  
  f_mR(T);
    
 return(Q);  
}
/* ------------------------------------ */
/* ------------------------------------ */


Déclaration des fichiers h.