Mathc matrices/04z
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c00a.c |
---|
/* ------------------------------------ */
/* Save as : c00a.c */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
#define RCA C3
/* ------------------------------------ */
int main(void)
{
double a[RCA*RCA]={
+0.079921388798, +0.208319685555, -0.173599737963,
+0.208319685555, +0.952833278742, +0.039305601048,
-0.173599737963, +0.039305601048, +0.967245332460
};
double **A = ca_A_mR(a,i_mR(RCA,RCA));
double **EigsValue = i_mR(RCA,C1);
clrscrn();
printf(" Copy/Past into the octave windows \n\n");
p_Octave_mR(A,"a",P12);
printf(" [V, E] = eigs (a,%d) \n\n",RCA);
eigs_mR(A,EigsValue);
printf(" EigsValue :");
p_mR(EigsValue,S10,P4,C1);
stop();
f_mR(A);
f_mR(EigsValue);
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Vérifier avec Octave.
Exemple de sortie écran :
Copy/Past into the octave windows
a=[
+0.079921388798,+0.208319685555,-0.173599737963;
+0.208319685555,+0.952833278742,+0.039305601048;
-0.173599737963,+0.039305601048,+0.967245332460]
[V, E] = eigs (a,3)
EigsValue :
+1.0000
+1.0000
+0.0000
Press return to continue.