Mathc matrices/01g
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c00a.c |
---|
/* ------------------------------------ */
/* Save as : c00a.c */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
#define RC RC6
/* ------------------------------------ */
int main(void)
{
/* Hankel Matrix, anti-circulant matrix
V
a
b
c
d
e
f
U f a b c d e
*/
double v[RC*C1]={ 1,
2,
3,
4,
5,
6};
double u[R1*RC]={ 6,1,2,3,4,5};
double **V = ca_A_mR(v,i_mR(RC,C1));
double **U = ca_A_mR(u,i_mR(R1,RC));
double **A = i_mR(RC,RC);
clrscrn();
rHankel_mR(U,V,A);
printf(" A[R%d,C%d] : \n",rsize_R(A),csize_R(A));
p_mR(A,S4,P0,C10);
stop();
f_mR(U);
f_mR(V);
f_mR(A);
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Matrice de Hankel.
On parle parfois de matrice anticirculante ou circulante gauche quand on effectue un décalage à gauche des coefficients en passant d'une ligne à la suivante.
Exemple de sortie écran :
A[R6,C6] :
+1 +2 +3 +4 +5 +6
+2 +3 +4 +5 +6 +1
+3 +4 +5 +6 +1 +2
+4 +5 +6 +1 +2 +3
+5 +6 +1 +2 +3 +4
+6 +1 +2 +3 +4 +5
Press return to continue.