00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include <stdio.h>
00013 #include <math.h>
00014 #include <AR/matrix.h>
00015
00016 int arMatrixDisp(ARMat *m)
00017 {
00018 int r, c;
00019
00020 printf(" === matrix (%d,%d) ===\n", m->row, m->clm);
00021 for(r = 0; r < m->row; r++) {
00022 printf(" |");
00023 for(c = 0; c < m->clm; c++) {
00024 printf(" %10g", ARELEM0(m, r, c));
00025 }
00026 printf(" |\n");
00027 }
00028 printf(" ======================\n");
00029
00030 return 0;
00031 }