gpt4 book ai didi

r - R 有 "negative zero"吗?

转载 作者:行者123 更新时间:2023-12-04 12:34:04 29 4
gpt4 key购买 nike

我的控制台告诉我 -0 返回 0 并且 c(1:5)[0]c (1:5)[-0] 返回 integer(0)。这是否意味着R没有“负零”的概念?

最佳答案

虽然 R 很好地隐藏了它,但实际上 R 确实有一个负零:

# R says these are the same

0 == -0
## [1] TRUE

identical(0, -0)
## [1] TRUE

# but they are not

is.neg0 <- function(x) x == 0 && sign(1/x) == -1

is.neg0(0)
## [1] FALSE

is.neg0(-0)
## [1] TRUE

关于r - R 有 "negative zero"吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66383986/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com