55 void write_formatted(
const double& x, ostream& ost) {
57 ost.width(23) ; ost << x ;
64 void write_formatted(
const Tbl& tb, ostream& ost) {
66 assert(tb.get_ndim() == 1) ;
68 for (
int i=0; i<tb.get_taille(); i++) {
69 ost.width(23) ; ost << tb(i) ;