Hello,
I created a function which calculates using significant numbers. For example, when you add 65 + 2.17 the result would be 67. Or 6.221 * 5.34 = 33.2. The problem is however, when I have a number which has an ending digit of 0, it get's lost in the conversion. Therefor, if you use 7.50 and multiply it with 8.321 the least number of significant numbers is 2 instead of 3. How can I fix this that 7.50 is read as 7.50 and not 7.5? Btw, are there any Oracle system functions which give you results according to the rules of significant numbers?
T.i.a.,
ratjetoes.
I created a function which calculates using significant numbers. For example, when you add 65 + 2.17 the result would be 67. Or 6.221 * 5.34 = 33.2. The problem is however, when I have a number which has an ending digit of 0, it get's lost in the conversion. Therefor, if you use 7.50 and multiply it with 8.321 the least number of significant numbers is 2 instead of 3. How can I fix this that 7.50 is read as 7.50 and not 7.5? Btw, are there any Oracle system functions which give you results according to the rules of significant numbers?
T.i.a.,
ratjetoes.