From: Tomas Nordin <tomasn@posteo.net>
To: Emanuel Berg <moasenwood@zoho.eu>, help-gnu-emacs@gnu.org
Subject: Re: bike shifting - output decimal in percent
Date: Sun, 19 May 2019 09:53:35 +0200 [thread overview]
Message-ID: <877eamop6o.fsf@fliptop.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <867eamsxq2.fsf@zoho.eu>
Emanuel Berg <moasenwood@zoho.eu> writes:
>>> (format "%2.2g%%" (* 100.0 foo)) => "31%"
>>
>> Great, thanks a lot :)
>
> Oups, spoke (no pun intended :)) too soon.
> Too much respect for Drew, I suppose ;)
>
> But to be honest, the original program is
> _much_ better. Check out the examples below:
>
> ;; secret bonus program :)
> ;; thanks to friend at #emacs
> (defun percent-string (decimal)
> (concat
> (number-to-string
> (round (* 100 decimal)) ) "%") )
> ;; test: (percent-string 0.42857142857142855) ; "43%"
>
> (defun bike-compute-step (from to)
> (percent-string
> (/ (- from to)
> from
> 1.0) ))
> ;; test - should be 43% for
> ;; one 42t and one 24t chainring
> ;; according to an article in the spring 2019 issue
> ;; of "Bicycle Quarterly" (ISSN 1941-8809) -
> ;; (bike-compute-step 42 24) ; "43%"
>
> ;; (percent-string 0.01) ; "1%"
> ;; (percent-string 0.1) ; "10%"
> ;; (percent-string 1) ; "100%
> ;; (percent-string 2) ; "200%"
>
> ;; (format "%2.2g%%" (* 100.0 0.01)) ; " 1%" (?)
> ;; (format "%2.2g%%" (* 100.0 0.1)) ; "10%"
> ;; (format "%2.2g%%" (* 100.0 1)) ; "1e+02%" (!?)
> ;; (format "%2.2g%%" (* 100.0 2)) ; "2e+02%" (...)
Why not just use good old %f?
(format "%.0f%%" (* 0.127 100)) ;; -> "13%"
Or respecting SI recommendations:
(format "%.0f %%" (* 0.127 100)) ;; -> "13 %"
next prev parent reply other threads:[~2019-05-19 7:53 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-19 1:34 bike shifting - output decimal in percent Emanuel Berg
2019-05-19 3:50 ` Drew Adams
2019-05-19 3:57 ` Drew Adams
2019-05-19 4:09 ` Drew Adams
2019-05-19 7:05 ` Emanuel Berg
2019-05-19 7:35 ` Emanuel Berg
2019-05-19 7:53 ` Tomas Nordin [this message]
2019-05-19 8:02 ` Emanuel Berg
2019-05-19 8:15 ` Tomas Nordin
2019-05-19 8:26 ` Emanuel Berg
2019-05-19 14:26 ` Drew Adams
2019-05-19 14:15 ` Drew Adams
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=877eamop6o.fsf@fliptop.i-did-not-set--mail-host-address--so-tickle-me \
--to=tomasn@posteo.net \
--cc=help-gnu-emacs@gnu.org \
--cc=moasenwood@zoho.eu \
/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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).