有人知道为什么输出永远不会改变吗?
response <- function(sw, r, delta) {
exp(0.05795)*exp((1.60217662E-19^2)/8*pi*298*1.381E-23*8.854E-12*(1/sw*((1/r)-(1/(r+delta+0.008399)))-1/2.2*(1/r-1/(r+delta))))-1
}
value<-response(1,1,1)
formatted_value <- format(value, nsmall = 20)
print(formatted_value)
"0.05966201128512360619"
value<-response(2,2,2)
formatted_value <- format(value, nsmall = 20)
print(formatted_value)
"0.05966201128512360619"
字符串
无论我如何改变输入,输出总是“0.05966201128512360619”。这与Excel中的结果不一致。
谢谢你,谢谢
1条答案
按热度按时间gudnpqoy1#
你至少有
3e-70
的指数。您需要一个如此小的数字来检测变化:字符串
这是因为在某一时刻
型
你必须克服这个因素。