MathGroup Archive 2009

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

Search the Archive

Re: Formatting Numeric Outpuit

  • To: mathgroup at smc.vnet.net
  • Subject: [mg104844] Re: Formatting Numeric Outpuit
  • From: dnquark <dnquark at gmail.com>
  • Date: Wed, 11 Nov 2009 04:30:05 -0500 (EST)
  • References: <hdbhjs$jmt$1@smc.vnet.net>

On Nov 10, 6:08 am, BenT <brt... at pdmusic.org> wrote:
 - use Column[] before NumberForm[]
 - read the docs for NumberForm[]

Is this closer to what you want?:

n1 = RandomReal[100, 10]
NumberForm[Column[n1, Right], {5, 3}, NumberPadding -> "0"]

> Please consider these Mathematica 7 code Input lines:
>
> n1 = RandomReal[100, 10]
>
> n2 = NumberForm[n1, {3, 3}]
>
> Column[n2, Right]
>
> What I expected to get was "ignored", namely right aligned "arbitrary"
> numeric data with 3 digits to the right, and 3 digits to the left of
> the decimal point) formatted in a single column. How can this be
> achieved with any numeric list of data?
>
> --- Benjamin Tubb



  • Prev by Date: Re: Formatting Numeric Outpuit
  • Next by Date: Re: Formatting Numeric Outpuit
  • Previous by thread: Re: Formatting Numeric Outpuit
  • Next by thread: Re: Formatting Numeric Outpuit