Message322400
I think we should guarantee some properties:
1. The result of hypot(x, y, z, ...) shouldn't depend on the order of arguments.
2. It should be monotonic for all arguments: hypot(..., x, ...) <= hypot(..., y, ...) for abs(x) < abs(y).
3. hypot(..., inf, ...) = inf
4. hypot(..., nan, ...) = nan (if no infinities)
5. hypot(x, x, x, x) == 2*abs(x) |
|
Date |
User |
Action |
Args |
2018-07-26 06:20:28 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, tim.peters, rhettinger, mark.dickinson, steven.daprano, skrah |
2018-07-26 06:20:28 | serhiy.storchaka | set | messageid: <1532586028.76.0.56676864532.issue33089@psf.upfronthosting.co.za> |
2018-07-26 06:20:28 | serhiy.storchaka | link | issue33089 messages |
2018-07-26 06:20:28 | serhiy.storchaka | create | |
|