data diff;
a=2985014.3137841 ;
b=2985014.3137841;
dif=a-b;
run;
proc print noobs;run;
SAS Output
The SAS System |
a | b | dif |
---|---|---|
2985014.31 | 2985014.31 | 0 |
The two number are not equal, they are just displayed as equal. A -4E-10 difference is not visible when you display only 7 decimals. See @novinosrin's demonstration above.
Why do you expect the difference to be zero?
@teja04 wrote:
I am not supposed to use ROUND function.
Don't be an idiot. The tool for removing such artifacts of SAS numerical precision issues is the round() function, so use it. See Maxim 14.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.