text
stringlengths 0
211k
|
---|
Mathc complexes/a182 |
Application |
Installer et compiler ce fichier dans votre répertoire de travail. |
/* ------------------------------------ */ |
/* Save as : c00a.c */ |
/* ------------------------------------ */ |
/* ------------------------------------ */ |
void fun(void) |
double u[TAB][RU*C2]=; |
double **U[TAB]; |
int c; |
clrscrn(); |
for(c=C0; c<TAB; c++) |
U[c] = ca_A_mZ( u[c],i_mZ(RU,C1)); |
printf(" U[%d] : ",c); |
p_mZ(U[c],S6,P0,S6,P0,C10); |
stop(); |
for(c=C0; c<TAB; c++) |
f_mZ(U[c]); |
/* ------------------------------------ */ |
int main(void) |
fun(); |
return 0; |
/* ------------------------------------ */ |
Les vecteurs de la base U dans la base standard. |
Exemple de sortie écran : |
U[0] : |
+2 +3i |
+2 +5i |
+6 +1i |
U[1] : |
+1 +2i |
+5 +2i |
+3 +3i |
U[2] : |
+4 +1i |
+3 +2i |
+2 +3i |
Press return to continue. |
Mathc complexes/a183 |
Application |
Installer et compiler ce fichier dans votre répertoire de travail. |
/* ------------------------------------ */ |
/* Save as : c00a.c */ |
/* ------------------------------------ */ |
/* ------------------------------------ */ |
void fun(void) |
double u[TAB][RU*C2]=; |
double **U[TAB]; |
double **B = i_mZ(RU,RU); |
int c; |
clrscrn(); |
for(c=C0; c<TAB; c++) |
U[c] = ca_A_mZ( u[c],i_mZ(RU,C1)); |
c_c_mZ(U[c],C1, B,c+C1); |
printf(" Three U vectors in the Standard Basis \n\n" |
" U[0] U[1] U[2] :"); |
p_mZ(B,S6,P0,S3,P0,C10); |
stop(); |
for(c=C0; c<TAB; c++) |
f_mZ(U[c]); |
f_mZ(B); |
/* ------------------------------------ */ |
int main(void) |
fun(); |
return 0; |
/* ------------------------------------ */ |
La matrice B d'affichage des vecteurs. |
Exemple de sortie écran : |
Three U vectors in the Standard Basis |
U[0] U[1] U[2] : |
+2 +3i +1 +2i +4 +1i |
+2 +5i +5 +2i +3 +2i |
+6 +1i +3 +3i +2 +3i |
Press return to continue. |
Mathc complexes/a184 |
Application |
Installer et compiler ce fichier dans votre répertoire de travail. |
/* ------------------------------------ */ |
/* Save as : c00a.c */ |
/* ------------------------------------ */ |
/* ------------------------------------ */ |
void fun(void) |
double u[TAB][RU*C2]=; |
double **U[TAB]; |
double **B = i_mZ(RU,RU); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.