Re: Formatting Numeric Outpuit
- To: mathgroup at smc.vnet.net
- Subject: [mg104821] Re: [mg104782] Formatting Numeric Outpuit
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Wed, 11 Nov 2009 04:25:18 -0500 (EST)
- Reply-to: hanlonr at cox.net
n1 = RandomReal[100, 10]; (n2 = NumberForm[n1, {3, 3}])//FullForm Look at the FullForm of your n2. Then note that NumberForm does not have the attribute Listable. Attributes[NumberForm] {Protected} Use n2 = NumberForm[#, {3, 3}] & /@ n1; Column[n2, Right] Bob Hanlon ---- BenT <brtubb at pdmusic.org> wrote: ============= 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 -- Bob Hanlon
- Follow-Ups:
- Re: Re: Formatting Numeric Outpuit
- From: Murray Eisenberg <murray@math.umass.edu>
- Re: Re: Formatting Numeric Outpuit