MathGroup Archive 2011

[Date Index] [Thread Index] [Author Index]

Search the Archive

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"]


  • Prev by Date: Trigonometry
  • Next by Date: Re: Mathematica 6.0.1 nb working, but not on Mathematica 8.0.1.
  • Previous by thread: Re: Trigonometry
  • Next by thread: Re: Mathematica 6.0.1 nb working, but not on Mathematica 8.0.1.