From: John Green <jg012b8403_2@blueyonder.co.uk>
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] Getting BC not to truncate at the decimal point?
Date: Thu, 25 May 2006 16:05:35 +0000 [thread overview]
Message-ID: <4475D5CF.5080306@blueyonder.co.uk> (raw)
In-Reply-To: <e1a7ee0c0605240948v690c5605x1cc39b6fcc8921e7@mail.gmail.com>
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
next prev parent reply other threads:[~2006-05-25 15:13 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-05-24 16:48 [gentoo-user] Getting BC not to truncate at the decimal point? Mike Huber
2006-05-24 21:49 ` [SPAM] - [gentoo-user] Getting BC not to truncate at the decimal point? - Bayesian Filter detected spam Harald Arnesen
2006-05-26 1:38 ` znx
2006-05-25 16:05 ` John Green [this message]
-- strict thread matches above, loose matches on Subject: below --
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4475D5CF.5080306@blueyonder.co.uk \
--to=jg012b8403_2@blueyonder.co.uk \
--cc=gentoo-user@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox