Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.soft-sys.math.mathematica > #1373 > unrolled thread
| Started by | Eric Gonzalez <eric.phys@gmail.com> |
|---|---|
| First post | 2011-04-01 07:31 +0000 |
| Last post | 2011-04-01 07:31 +0000 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.soft-sys.math.mathematica
IEEE double syntax Eric Gonzalez <eric.phys@gmail.com> - 2011-04-01 07:31 +0000
| From | Eric Gonzalez <eric.phys@gmail.com> |
|---|---|
| Date | 2011-04-01 07:31 +0000 |
| Subject | IEEE double syntax |
| Message-ID | <in3v02$hr2$1@smc.vnet.net> |
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"]
Back to top | Article view | comp.soft-sys.math.mathematica
csiph-web