Mathc matrices/Fichiers c : r sym
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
rsym.c |
---|
/* ------------------------------------ */
/* Save as : rsym.c */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
void fun(int rc)
{
double **A = rsymmetric_mR(i_mR(rc,rc),9);
clrscrn();
printf(" rsymmetric_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 symétrique.
Exemple de sortie écran :
rsymmetric_mR() :
A[R3,C3] :
+2 +7 +9
+7 +7 +7
+9 +7 +7
Press return to continue
Press X to stop