MathGroup Archive 2008

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

Search the Archive

Re: How export the 0<x<10^-6 numbers to a text file correctly

  • To: mathgroup at smc.vnet.net
  • Subject: [mg89060] Re: How export the 0<x<10^-6 numbers to a text file correctly
  • From: Peter Breitfeld <phbrf at t-online.de>
  • Date: Sun, 25 May 2008 03:18:31 -0400 (EDT)
  • References: <g18hq2$khf$1@smc.vnet.net>

P.Wholey schrieb:
> Hi, friends. I have a lot of POSTIVE numbers which should be exported
> to a text file. Some of them are in the range of <10^-6 even <10^-8.
> The mathematica always export these numbers in scientificform
> automatically, but I need a pure number. Any ideas to solve this
> problem? Many thanks in advance!
>

You may use AccountingForm:

ll = 1/Pi 10*^-7 RandomReal[{0, 1}, 20]

Export["wegmit.txt",ToString@AccountingForm[ll]]

Gruss Peter
-- 
==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==-==
Peter Breitfeld, Bad Saulgau, Germany -- http://www.pBreitfeld.de


  • Prev by Date: Re: Dot Product of Vectors
  • Next by Date: Re: Export graphics to ascii file
  • Previous by thread: Re: How export the 0<x<10^-6 numbers to a text file correctly
  • Next by thread: Re: How export the 0<x<10^-6 numbers to a text file correctly