ttt=Table[(i + j) 10^(-30), {i, 1}, {j, 2}];
Export["test.dat", ttt, "Table"]
This gives notation1/500000000000000000000000000000, but I need 2.0000e-30 or similar in the file (i.e, Fortran-readable).
Somewhere I probably need to use FortranForm, NumberFormat, ExponentFunction, or some other coercion, but I cannot find it in any of the existing discussions on the web (I do see answers but none of them actually works!)
So unless I overlooked something, this seems to be the most basic way of writing a Fortran-readable table.
– Jos May 13 '17 at 08:17