You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
13 years ago
|
|
||
|
/*
|
||
|
* === FUNCTION ======================================================================
|
||
|
* Name: print_double_array
|
||
|
* Description: Print a double-array with one dimension.
|
||
|
* Use
|
||
|
* print_int_array( *matrix, n1*n2, n2, "matrix" );
|
||
|
* for
|
||
|
* double matrix[n1][n2];
|
||
|
* =====================================================================================
|
||
|
*/
|
||
|
static void
|
||
|
print_double_array ( double array[], /* array to print */
|
||
|
int n, /* number of elements to print */
|
||
|
int nrow, /* number of elements per row */
|
||
|
char *arrayname /* array name */
|
||
|
)
|
||
|
{
|
||
|
int i;
|
||
|
printf ("\n\n array \"%s\", length %d\n", arrayname, n );
|
||
|
printf ("\n index | content\n" );
|
||
|
printf ( " ------+-" );
|
||
|
for ( i = 0; i < nrow; i += 1 )
|
||
|
printf ( "---------" );
|
||
|
for ( i=0; i<n; i+=1 )
|
||
|
{
|
||
|
if( i%nrow == 0 )
|
||
|
printf ("\n%6d | ", i );
|
||
|
printf (" %8.2f", array[i] );
|
||
|
}
|
||
|
printf ("\n\n");
|
||
|
return ;
|
||
|
} /* ---------- end of function print_double_array ---------- */
|
||
|
|