Mathc matrices/05d
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c00a.c |
---|
/* ------------------------------------ */
/* Save as : c00a.c */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
#define RCA RC3
/* ------------------------------------ */
/* ------------------------------------ */
int main(void)
{
double a[RCA*RCA] ={
+0.390117647059, +0.169411764706, +0.457411764706,
+0.169411764706, +0.952941176471, -0.127058823529,
+0.457411764706, -0.127058823529, +0.656941176471
};
double v[RCA*RCA] ={
+0.267643863786, +0.600000000000, -0.780949648147,
+0.963517909630, +0.000000000000, +0.216930457818,
+0.000000000000, +0.800000000000, +0.585712236110
};
double **A = ca_A_mR(a, i_mR(RCA,RCA));
double **V = ca_A_mR(v, i_mR(RCA,RCA));
double **invV = invgj_mR(V, i_mR(RCA,RCA));
double **EValue = i_mR(RCA,RCA);
double **T = i_mR(RCA,RCA);
clrscrn();
printf(" A :");
p_mR(A, S8,P6, C3);
printf(" V :");
p_mR(V, S9,P6, C4);
printf(" EValue = invV * A * V");
mul_mR(invV,A,T);
mul_mR(T,V,EValue);
p_mR(EValue, S9,P6, C4);
printf(" A = V * EValue * invV");
mul_mR(V,EValue,T);
mul_mR(T,invV,A);
p_mR(A, S8,P6, C3);
stop();
clrscrn();
printf(" The matrix A projects the space in the direction\n"
" of the eigenvector V3 on a plan determined by\n"
" the eigenvector V1 and V2 if :\n\n"
" The eigenvector V1 has its eigenvalue equal to one and \n"
" The eigenvector V2 has its eigenvalue equal to one and \n"
" The eigenvector V3 has its eigenvalue equal to zero and \n\n"
" If The vectors V1 and V2 and V3 are linearly independent\n\n"
" det(V) = %.5e\n\n",det_R(V));
stop();
f_mR(A);
f_mR(V);
f_mR(invV);
f_mR(T);
f_mR(EValue);
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Vérifier les calculs.
Exemple de sortie écran :
A :
+0.390118 +0.169412 +0.457412
+0.169412 +0.952941 -0.127059
+0.457412 -0.127059 +0.656941
V :
+0.267644 +0.600000 -0.780950
+0.963518 +0.000000 +0.216930
+0.000000 +0.800000 +0.585712
EValue = invV * A * V
+1.000000 +0.000000 -0.000000
+0.000000 +1.000000 +0.000000
+0.000000 +0.000000 +0.000000
A = V * EValue * invV
+0.390118 +0.169412 +0.457412
+0.169412 +0.952941 -0.127059
+0.457412 -0.127059 +0.656941
Press return to continue.
The matrix A projects the space in the direction
of the eigenvector V3 on a plan determined by
the eigenvector V1 and V2 if :
The eigenvector V1 has its eigenvalue equal to one and
The eigenvector V2 has its eigenvalue equal to one and
The eigenvector V3 has its eigenvalue equal to zero and
If The vectors V1 and V2 and V3 are linearly independent
det(V) = -9.87022e-01
Press return to continue.