Arbitrary precision floats in .net. Any library that allows this?

I need to do math on both floats and integers with much more precision and magnitude than what is offered as int / float / double in .net. Are there any libraries around this help? I remember there was something similar for c / C ++.

+2


source to share


2 answers


CodePlex comes to the rescue:

1. Arbitrary length floating point library: W3b.Sine http://sine.codeplex.com/

2. Arbitrary integer length library: IntX http://intx.codeplex.com/



3. C # cover for well-known GMP library: http://gnumpnet.codeplex.com/

LP, Deiana

+1


source


Yes and no. A simple internet search shows some interesting results. http://aaronfeng.blogspot.com/2006/05/net-biginteger-and-bigdecimal.html for example.



Take more time to formulate the question for the best answers.

+2


source







All Articles