Support for some rounding algorithms in .NET.

I need to use some rounding algorithms from my C # application:

Systematic:

enter image description here

randomly:

enter image description here

and controlled by:

enter image description here

Does the .NET Framework support mathematical support for these algorithms (maybe there are free libraries available for C #), or do I need to implement these functions myself? How can I verify the correctness of the algorithms, if I implement them, to make sure that they are right? Does anyone have test input and output data for it? Are there any free applications that I can compare with my calculated results for entering sample c?

+3
source share
1 answer
+1

All Articles