Ignore:
Timestamp:
06/22/12 10:28:55 (13 years ago)
Author:
Mathieu Morlighem
Message:

Changing some printf to _printLine_

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp ΒΆ

    r12465 r12507  
    7777        printf("   matrix size: %i-%i\n",this->M,this->N);
    7878        for (i=0;i<this->M;i++){ 
    79                 printf("   [ ");
     79                _printString_("   [ ");
    8080                for (j=0;j<this->N;j++){
    81                         printf(" %12.6g ",this->values[i*this->N+j]);
     81                        _printString_( " " << setw(11) << setprecision (5) << this->values[i*this->N+j]);
    8282                } 
    83                 printf(" ]\n");
     83                _printLine_(" ]");
    8484        } 
    85         printf("\n");
    8685
    8786}
Note: See TracChangeset for help on using the changeset viewer.