Title: NUMS Features Post by: PeterM on September 23, 2008, 02:31:35 PM Hi
I was not aware you already had a Forum which is great. Just a question regarding NUMS, can you give us a bit of a description of its capabilities and what other features you are looking at implementing ? PM Title: Re: NUMS Features Post by: Admin on September 23, 2008, 04:37:25 PM I was not aware you already had a Forum which is great. Hi Peter, Good to hear from you. Yes, I set up the forums some time ago but I did not make much publicity about it. Perhaps I should send all my customers a notification mail. Anyway, glad you found it ! :) Quote from: PeterM Just a question regarding NUMS, ... its capabilities and what other features you are looking at implementing ? NUMS is a mathematical library (a dll) I am developing now for arbitrary precision floating point and signed big integer calculations. As you know, HIME has math functions for unsigned huge integers, but I got requests from users for adding floating point math functions. Rather than to add such functionality in HIME, I chose to develop a new product, called NUMS. NUMS is based on the same huge integer math kernel as HIME. But NUMS can handle variables in 5 different data types: 4 numerical data types and a dynamic string data type: 1. "BinFloat", Binary base Arbitrary Precision Floating Point data type This data type stores numbers in the format: mantissa * 256^exp
2. "DecFloat", Decimal base Arbitrary Precision Floating Point data type This data type stores numbers in the format: mantissa * 10^exp This is a floating point number, simular to the BinFloat data type, except it is base 10.
3. "Rational", rational number data type This data type stores numbers in the format: nominator / denominator
4. "BigInt", big integer data type This data type stores numbers in the format: big integer
5. "String", string data type This data type stores alphanumerical string data upto 2^31 (2147483648) bytes long. PROS AND CONS OF THE VARIOUS DATA TYPES BinFloat + Fast math operations - Possibility for base conversion errors when converting to and from decimal (No base conversion errors when converting to and from hexadecimal or binary). DecFloat + No base conversion errors when converting to and from decimal. - A little more overhead during math operations compared to BinFloats. Rational + No rounding errors for +, -, *, / - Generally, slower math operations compared to above data types. BigInt + No rounding errors when used for integer operations. - Only suitable for integer number math. NUMS is still under development. Functions implemented so far are:
Functions that are in preparation and will be added to the first release:
If you like to know more, just ask. Kind regards Eddy Title: Re: NUMS Features Post by: PeterM on September 24, 2008, 10:18:33 AM Eddy
Wow, thanks for the info. Peter |