* [gentoo-user] Getting BC not to truncate at the decimal point?
@ 2006-05-24 16:48 Mike Huber
2006-05-25 16:05 ` John Green
0 siblings, 1 reply; 5+ messages in thread
From: Mike Huber @ 2006-05-24 16:48 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1182 bytes --]
Hi,
I'm just trying to do some quick calculations using bc, but the version
installed through portage truncates on multiplication/division. It didn't
used to do this 2 years ago when I was taking number theory, and there are
no USE flags available for sys-devel/bc to change this. From the manpage:
---------------------------------------------------------------------
The most basic element in bc is the number. Numbers are arbitrary precision
numbers. This precision is both in the integer part and the fractional
part. All numbers are represented internally in decimal and all computation
is done in decimal. (This version truncates results from divide and
multiply operations.) There are two attributes of numbers, the length and
the scale. The length is the total number of significant decimal digits
in a number and the scale is the total number of decimal digits after the
decimal point. For example:
.000001 has a length of 6 and scale of 6.
1935.000 has a length of 7 and a scale of 3.
------------------------------------------------------------------------
Anyone have any ideas?
--Mike
[-- Attachment #2: Type: text/html, Size: 1642 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Getting BC not to truncate at the decimal point?
@ 2006-05-24 20:46 brettholcomb
2006-05-24 21:15 ` Mike Huber
0 siblings, 1 reply; 5+ messages in thread
From: brettholcomb @ 2006-05-24 20:46 UTC (permalink / raw
To: gentoo-user
Did you try
scale=n
Where n is the number of digits after the decimal? More in man bc.
>
> From: "Mike Huber" <michael.huber@gmail.com>
> Date: 2006/05/24 Wed PM 12:48:29 EDT
> To: gentoo-user@lists.gentoo.org
> Subject: [gentoo-user] Getting BC not to truncate at the decimal point?
>
> Hi,
> I'm just trying to do some quick calculations using bc, but the version
> installed through portage truncates on multiplication/division. It didn't
> used to do this 2 years ago when I was taking number theory, and there are
> no USE flags available for sys-devel/bc to change this. From the manpage:
>
> ---------------------------------------------------------------------
>
> The most basic element in bc is the number. Numbers are arbitrary precision
> numbers. This precision is both in the integer part and the fractional
> part. All numbers are represented internally in decimal and all computation
> is done in decimal. (This version truncates results from divide and
> multiply operations.) There are two attributes of numbers, the length and
> the scale. The length is the total number of significant decimal digits
> in a number and the scale is the total number of decimal digits after the
> decimal point. For example:
> .000001 has a length of 6 and scale of 6.
> 1935.000 has a length of 7 and a scale of 3.
>
>
> ------------------------------------------------------------------------
>
>
> Anyone have any ideas?
>
> --Mike
>
>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Getting BC not to truncate at the decimal point?
2006-05-24 20:46 [gentoo-user] Getting BC not to truncate at the decimal point? brettholcomb
@ 2006-05-24 21:15 ` Mike Huber
2006-05-25 0:51 ` Brett I. Holcomb
0 siblings, 1 reply; 5+ messages in thread
From: Mike Huber @ 2006-05-24 21:15 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1914 bytes --]
duh, sorry, case of me not fully reading the manpage. I'll be sure and
fully read before I send to the list.
Thanks a lot,
--Mike
On 5/24/06, brettholcomb@bellsouth.net <brettholcomb@bellsouth.net> wrote:
>
> Did you try
>
> scale=n
>
> Where n is the number of digits after the decimal? More in man bc.
>
> >
> > From: "Mike Huber" <michael.huber@gmail.com>
> > Date: 2006/05/24 Wed PM 12:48:29 EDT
> > To: gentoo-user@lists.gentoo.org
> > Subject: [gentoo-user] Getting BC not to truncate at the decimal point?
> >
> > Hi,
> > I'm just trying to do some quick calculations using bc, but the
> version
> > installed through portage truncates on multiplication/division. It
> didn't
> > used to do this 2 years ago when I was taking number theory, and there
> are
> > no USE flags available for sys-devel/bc to change this. From the
> manpage:
> >
> > ---------------------------------------------------------------------
> >
> > The most basic element in bc is the number. Numbers are arbitrary
> precision
> > numbers. This precision is both in the integer part and the
> fractional
> > part. All numbers are represented internally in decimal and all
> computation
> > is done in decimal. (This version truncates results from divide and
> > multiply operations.) There are two attributes of numbers, the length
> and
> > the scale. The length is the total number of
> significant decimal digits
> > in a number and the scale is the total number of decimal digits after
> the
> > decimal point. For example:
> > .000001 has a length of 6 and scale of 6.
> > 1935.000 has a length of 7 and a scale of 3.
> >
> >
> > ------------------------------------------------------------------------
> >
> >
> > Anyone have any ideas?
> >
> > --Mike
> >
> >
>
> --
> gentoo-user@gentoo.org mailing list
>
>
[-- Attachment #2: Type: text/html, Size: 2873 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Getting BC not to truncate at the decimal point?
2006-05-24 21:15 ` Mike Huber
@ 2006-05-25 0:51 ` Brett I. Holcomb
0 siblings, 0 replies; 5+ messages in thread
From: Brett I. Holcomb @ 2006-05-25 0:51 UTC (permalink / raw
To: gentoo-user
You're welcome. Don't feel bad - it took me a "This thing can't be that dumb"
and a man page read to find out it was smarter than I thought <G>.
On Wednesday May 24 2006 17:15, Mike Huber wrote:
> duh, sorry, case of me not fully reading the manpage. I'll be sure and
> fully read before I send to the list.
>
> Thanks a lot,
> --Mike
>
> On 5/24/06, brettholcomb@bellsouth.net <brettholcomb@bellsouth.net> wrote:
> > Did you try
> >
> > scale=n
> >
> > Where n is the number of digits after the decimal? More in man bc.
> >
> > > From: "Mike Huber" <michael.huber@gmail.com>
> > > Date: 2006/05/24 Wed PM 12:48:29 EDT
> > > To: gentoo-user@lists.gentoo.org
> > > Subject: [gentoo-user] Getting BC not to truncate at the decimal point?
> > >
> > > Hi,
> > > I'm just trying to do some quick calculations using bc, but the
> >
> > version
> >
> > > installed through portage truncates on multiplication/division. It
> >
> > didn't
> >
> > > used to do this 2 years ago when I was taking number theory, and there
> >
> > are
> >
> > > no USE flags available for sys-devel/bc to change this. From the
> >
> > manpage:
> > > ---------------------------------------------------------------------
> > >
> > > The most basic element in bc is the number. Numbers are arbitrary
> >
> > precision
> >
> > > numbers. This precision is both in the integer part and the
> >
> > fractional
> >
> > > part. All numbers are represented internally in decimal and all
> >
> > computation
> >
> > > is done in decimal. (This version truncates results from divide and
> > > multiply operations.) There are two attributes of numbers, the length
> >
> > and
> >
> > > the scale. The length is the total number of
> >
> > significant decimal digits
> >
> > > in a number and the scale is the total number of decimal digits after
> >
> > the
> >
> > > decimal point. For example:
> > > .000001 has a length of 6 and scale of 6.
> > > 1935.000 has a length of 7 and a scale of 3.
> > >
> > >
> > > -----------------------------------------------------------------------
> > >-
> > >
> > >
> > > Anyone have any ideas?
> > >
> > > --Mike
> >
> > --
> > gentoo-user@gentoo.org mailing list
--
Brett I. Holcomb
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Getting BC not to truncate at the decimal point?
2006-05-24 16:48 Mike Huber
@ 2006-05-25 16:05 ` John Green
0 siblings, 0 replies; 5+ messages in thread
From: John Green @ 2006-05-25 16:05 UTC (permalink / raw
To: gentoo-user
Mike Huber wrote:
> Hi,
> I'm just trying to do some quick calculations using bc, but the
> version installed through portage truncates on
> multiplication/division. It didn't used to do this 2 years ago when I
> was taking number theory, and there are no USE flags available for
> sys-devel/bc to change this. From the manpage:
>
> ---------------------------------------------------------------------
>
> The most basic element in bc is the number. Numbers are arbitrary
> precision numbers. This precision is both in
> the integer part and the fractional part. All numbers are
> represented internally in decimal and all computation is done in
> decimal. ( This version truncates results from divide and multiply
> operations.) There are two attributes of numbers, the length and the
> scale. The length is the total number of significant decimal digits
> in a number and the scale is the total number of decimal digits after
> the decimal point. For example:
> .000001 has a length of 6 and scale of 6.
> 1935.000 has a length of 7 and a scale of 3.
>
>
> ------------------------------------------------------------------------
>
>
> Anyone have any ideas?
>
> --Mike
Hi,
Try this.
$ echo '1/5' | bc
0
$ echo '1/5' | bc -l
.20000000000000000000
I don't think bc has changed in a long time.
Maybe you forgot the -l option.
You can also control the scale explicitly like this.
echo 'scale=3;1/5' | bc -l
.200
Hope this helps.
John Green
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-05-25 15:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-24 20:46 [gentoo-user] Getting BC not to truncate at the decimal point? brettholcomb
2006-05-24 21:15 ` Mike Huber
2006-05-25 0:51 ` Brett I. Holcomb
-- strict thread matches above, loose matches on Subject: below --
2006-05-24 16:48 Mike Huber
2006-05-25 16:05 ` John Green
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox