IEEE double syntax
- To: mathgroup at smc.vnet.net
 - Subject: [mg117827] IEEE double syntax
 - From: Eric Gonzalez <eric.phys at gmail.com>
 - Date: Fri, 1 Apr 2011 02:32:29 -0500 (EST)
 
Hello Group,
I need to export a matrix in IEEE double syntax 1.234567890000e-123 like
{{a11,a12},{a21,a22}}
....how to get rid of the *^ in the code below?
thnks,
Eric
m = Table[Exp[-(10. i*j)], {i, 0, 4}, {j, 0, 4}];
MatrixForm[m]
fout = OpenWrite["./m.dat"];
Write[fout, m]
FilePrint["./m.dat"]