Mathc matrices/Fichiers c : r low


Application


Installer et compiler ces fichiers dans votre répertoire de travail.

rlow.c
/* ------------------------------------ */
/*  Save as :   rlow.c                  */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
void fun(int rc)
{
double **A   = rlower_mR(i_mR(rc,rc),9);

  clrscrn();

  printf(" rlower_mR() :  \n\n" 
         " A[R%d,C%d] : \n",rsize_R(A),csize_R(A));
  p_mR(A,S4,P0,C8);
   
  f_mR(A);
}
/* ------------------------------------ */
int main(void)
{
time_t t;

  srand(time(&t));
  
  do
        fun(rp_I(RC8));

  while(stop_w());       

  return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */


Cette fonction génère une matrice triangulaire inférieure.


Exemple de sortie écran :

rlower_mR() :  

 A[R5,C5] : 

  +2   +0   +0   +0   +0 
  -3   +4   +0   +0   +0 
  +6   -5   +6   +0   +0 
  -7   +8   -7   -3   +0 
  -1   -5   -5   +6   +4 


 Press return to continue
 Press X      to stop