< Mathc complexes


Sommaire


Installer et compiler ces fichiers dans votre répertoire de travail.


gj2_zsing.c
'
/* ------------------------------------ */
/*  Save as :   gj2_zsing.c                 */
/* ------------------------------------ */
#include "w_a.h"
/* ------------------------------------ */
void fun(int r)
{
/*                             i_AbR0_mZ(R_Ab,C_A,C_b));*/
double **Ab = r_singular_Ab_mZ(i_AbR0_mZ(   r,  r, C1),999);
double **A  = c_Ab_A_mZ(Ab,i_mZ(r,r));
double **b  = c_Ab_b_mZ(Ab,i_mZ(r,C1));	
	
  clrscrn();
  printf(" A :");
  p_mZ(A,5,0,5,0,5);
  printf(" b :");
  p_mZ(b,5,0,5,0,5);
  stop();

  clrscrn();
  printf(" Copy/Past into the octave window.\n\n");
  p_octave_mZ(c_A_b_Ab_mZ(A,b,Ab),"Ab",1,0, 0);
  printf(" rref(Ab,.00000000001)\n\n");
  printf(" gj_mZ(Ab) :");
  p_mZ(gj_mZ(Ab),1,5,1,5,3);

  f_mZ(Ab);
  f_mZ(b);
  f_mZ(A);
}
/* ------------------------------------ */
int main(void)
{
time_t t;

  srand(time(&t));

do
{
  fun(rp_I(3)+1);

} while(stop_w());

  return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */



Exemple de sortie écran :
 ------------------------------------
 A :
 -239 +976i  -905 -693i  +674  +92i 
 -239 +976i  -905 -693i  +674  +92i 
 -239 +976i  -905 -693i  +674  +92i 

 b :
 +318 -739i 
 +318 -739i 
 +318 -739i 

 Press return to continue. 



 ------------------------------------
 Copy/Past into the octave window.

 Ab=[
-239+976*i,-905-693*i,+674+92*i,+318-739*i;
-239+976*i,-905-693*i,+674+92*i,+318-739*i;
-239+976*i,-905-693*i,+674+92*i,+318-739*i]

 rref(Ab,.00000000001)

 gj_mZ(Ab) : The system has only an equation !!


-239.00000+976.00000i -905.00000-693.00000i +674.00000+92.00000i 
+0.00000+0.00000i +0.00000+0.00000i +0.00000+0.00000i 
+0.00000+0.00000i +0.00000+0.00000i +0.00000+0.00000i 

+318.00000-739.00000i 
+0.00000+0.00000i 
+0.00000+0.00000i 


 Press return to continue
 Press X      to stop    

 Press X      to stop
Cet article est issu de Wikibooks. Le texte est sous licence Creative Commons - Attribution - Partage dans les Mêmes. Des conditions supplémentaires peuvent s'appliquer aux fichiers multimédias.