27char write_formatted_C[] =
"$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Utilities/write_formatted.C,v 1.2 2014/10/13 08:53:32 j_novak Exp $" ;
52void write_formatted(
const double& x, ostream& ost) {
54 ost.width(23) ; ost << x ;
61void write_formatted(
const Tbl& tb, ostream& ost) {
63 assert(tb.get_ndim() == 1) ;
65 for (
int i=0; i<tb.get_taille(); i++) {
66 ost.width(23) ; ost << tb(i) ;