1309 int i, j, l, sg = element_size_;
1311 out.open(file, std::ios::out);
1312 out.precision(precision);
1313 out <<
"# " << nt_ <<
" " << ntau_ <<
" " << size1_ <<
" " 1314 <<
" " << sig_ << std::endl;
1315 for (j = 0; j <= ntau_; j++) {
1316 out <<
"mat: " << j;
1317 for (l = 0; l < sg; l++)
1318 out <<
" " << matptr(j)[l].real() <<
" " << matptr(j)[l].imag();
1323 for (i = 0; i <= nt_; i++) {
1324 for (j = 0; j <= i; j++) {
1325 out <<
"ret: " << i <<
" " << j;
1326 for (l = 0; l < sg; l++)
1327 out <<
" " << retptr(i, j)[l].real() <<
" " 1328 << retptr(i, j)[l].imag();
1334 for (i = 0; i <= nt_; i++) {
1335 for (j = 0; j <= ntau_; j++) {
1336 out <<
"tv: " << i <<
" " << j;
1337 for (l = 0; l < sg; l++)
1338 out <<
" " << tvptr(i, j)[l].real() <<
" " 1339 << tvptr(i, j)[l].imag();
1345 for (j = 0; j <= nt_; j++) {
1346 for (i = 0; i <= j; i++) {
1347 out <<
"les: " << i <<
" " << j;
1348 for (l = 0; l < sg; l++)
1349 out <<
" " << lesptr(i, j)[l].real() <<
" " 1350 << lesptr(i, j)[l].imag();