Mathc complexes/c103b
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
det_z_a.c |
---|
/* ------------------------------------ */
/* Save as : det_z_a.c */
/* ------------------------------------ */
/* ------------------------------------ */
#include "w_a.h"
/* ------------------------------------ */
void fun(void)
{
double a[R3*(C3*C2)] ={ 1,2, 3,4, 5,6,
5,4, 1,3, 6,8,
7,2, 5,1, 1,1};
double **A = ca_A_mZ(a,i_mZ(R3,C3));
clrscrn();
printf(" Copy/Past into the octave window. \n\n");
p_Octave_mZ(A,"A", P0 ,P0);
printf(" det(A)\n\n\n");
printf(" det(A) = ");
p_Z(det_Z(A), S4,P0, S5,P0);
printf("\n\n\n");
stop();
f_mZ(A);
}
/* ------------------------------------ */
int main(void)
{
fun();
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
.
Exemple de sortie écran :
------------------------------------
Copy/Past into the octave window.
A=[
+1+2*i,+3+4*i,+5+6*i;
+5+4*i,+1+3*i,+6+8*i;
+7+2*i,+5+1*i,+1+1*i]
det(A)
det(A) = -13 +317i
Press return to continue.