Re: Number format
- To: mathgroup at smc.vnet.net
- Subject: [mg101037] Re: [mg101028] Number format
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Mon, 22 Jun 2009 04:21:32 -0400 (EDT)
- Reply-to: hanlonr at cox.net
v = Table[1.234*10^n, {n, -18, 18, 3}] NumberForm[v, ExponentFunction -> (If[Abs[#] <= 15, Null, #] &)] Bob Hanlon ---- Lobotomy <labbman at gmail.com> wrote: ============= Hi i dont want my outbput to be presented using 10^n. I just want it to print the the entire sum like 10000000 rather than 1*10^7 How do i fix it? Ive experimented with NumberForm but i can't find the solution