Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
inf and nan in arithmetic expansions
- X-seq: zsh-workers 42344
- From: Stephane Chazelas <stephane.chazelas@xxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxx>
- Subject: inf and nan in arithmetic expansions
- Date: Wed, 7 Feb 2018 22:30:51 +0000
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mail-followup-to:mime-version :content-disposition:user-agent; bh=gDDzet8x3bWk1fNYHj19ddFewoF4m5MHLsrwbi6llDY=; b=o1S0yHqLbmkh+hCA5zJFy9G9Sg/Qss3Wdf3wHSqyHRe6Fbp5ILNObvW6Gvy+sm3bwZ 08r7Vgj3t7QlA5T8w3WBTY4drAmlAdXIZUbHRSH1rqJn5Lero05wQT1kCMzbf7HJHESp gpc0AvI2xEBtQL7CJB8osQ7m4Cv5/qbeFxsOyKIMIVV8ttZTQ0Cem3M3piCGnt6chwgM wGlpKJAjhnpeEGLddmm/e6NryAYp3P98SyShwNPGEKMV7xWnhG11OR8YJii7Bw9hFkEd hphSYwYHiIETxcz0/8Et/yzglZVYPybxF/W5Zlb+cEFlgk3pDJeLkYROWQM9SvO9FbO+ F+pw==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mail-followup-to: Zsh hackers list <zsh-workers@xxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Hi,
While looking into:
https://unix.stackexchange.com/questions/422122/why-does-0-1-expand-to-0-10000000000000001-in-zsh
I noted that zsh is very good at making sure that the result of
floating point arithmetic expansions are always suitable for
reinput inside other arithmetic expansions as floats.
For instance $((0.5 * 2)) expands to 1. and not 1 so that
when used in arithmetic expressions, it is still a float.
Or that is (I think) why numbers are expressed with 17 digits,
the full precision of IEEE 754 doubles, so that when reinput, we
get the same double.
Now, there's one case where it doesn't work is when the
expansion results into nan or inf
$ echo $((1e500))
inf.
$ echo $(($((1e500))))
zsh: bad floating point constant
$ a=$((1e200**2))
$ echo $((a))
zsh: bad floating point constant
$ echo $((1e500/1e500))
-nan.
$ echo $(($((1e500/1e500))))
zsh: bad floating point constant
See also:
$ typeset -F a; a=$((1e500))
zsh: bad floating point constant
neither "inf." nor "inf" are understood in arithmetic
expressions (and for "inf.", nor by other tools like awk, or
even the builtin printf):
$ printf '%f\n' inf nan infinity NAN
inf
nan
inf
nan
$ printf '%f\n' inf. nan.
zsh: bad floating point constant
zsh: bad floating point constant
0.000000
0.000000
Not sure what's the best way to address that.
At the moment, $((inf)) is meant to expand to the result of
the arithmetic expression in $inf
$ inf=1+1 zsh -c 'echo $((inf))'
2
It should be safe to change zsh so that inf. (and Inf. INF. NAN.
nan., maybe also Infinity.) are recognised in arithmetic
expression, as it's currently invalid, but that leaves the
problem of "inf." not being recognised by other tools
(awk/printf).
yash and ksh93 are the two other POSIX-like shells (that I know)
that support floating point arithmetics. yash is not much
better:
$ echo $((1e400))
yash: arithmetic: `1e500' is not a valid number
$ echo $((1e200*1e200))
inf
$ inf=42; echo $(($((1e200*1e200))))
42
ksh93 recognises inf (not infinity, same for its printf) and nan
on input:
$ echo $((1e6000))
inf
$ echo $((INF))
inf
$ echo $((nan))
nan
$ echo $((infinity))
0
It is documented (though not the fact that all case variants are
supported).
Slightly related:
The printf builtin understands the C99 hex with binary
exponent on input (where strtod supports them), but not on
output (%a, %A) and not in arithmetic expressions
$ printf "%g\n" 0x1p4
16
$ printf "%a\n" 16
printf: %a: invalid directive
$ echo $((0x1p4))
zsh: bad math expression: operator expected at `p4'
yash and ksh93 do support them.
(not that I would need them, that would be more for
consistency).
--
Stephane
Messages sorted by:
Reverse Date,
Date,
Thread,
Author