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