Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

为什么计算结果返回-0

我在DolphinDB GUI中执行下列代码:

x=table(103.6994 103.6994 as a,`a`a as b)
select 100-(first(a*100)/last(a)) as res from x group by b

这个计算结果给我返回了-0,为什么会带一个负号?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

你可以先看看

first(a*100)/last(a)

的结果,因为精度的原因它的值可能大于100


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...