VBA-float VS VBA-float

Compare VBA-float vs VBA-float and see what are their differences.

VBA-float

This is a class module in beta state to implement computations with large integers and reals/rationals numbers, while proposing representation of numerical values as scientific notation, allowing to obtain several cohorts for the same number (a lot of fun!). (by EagleAglow)

VBA-float

This is a class module in beta state to implement computations with large integers and reals/rationals numbers, while proposing representation of numerical values as scientific notation, allowing to obtain several cohorts for the same number (a lot of fun!). (by ws-garcia)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
VBA-float VBA-float
1 3
2 3
- -
2.0 1.7
about 1 year ago about 1 year ago
VBA VBA
GNU General Public License v3.0 only GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

VBA-float

Posts with mentions or reviews of VBA-float. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-26.
  • Porting big integers division code to VBA
    2 projects | /r/vba | 26 Feb 2023
    I forked your project to https://github.com/EagleAglow/VBA-float, and tried to write some test code (DivTest.bas). The reference values are the values used by the assert commands in Silent Matt's library.

VBA-float

Posts with mentions or reviews of VBA-float. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-26.
  • Porting big integers division code to VBA
    2 projects | /r/vba | 26 Feb 2023
    In that post I mentioned a library that I had coded in VBA to operate on numbers with hundreds, even thousands of digits. At that time I raised a difficulty that I had encountered when implementing large integer division and u/sancarn recommended me to port code from other libraries to VBA. In this issue I collect the details on the subject.
  • Division of real/rational numbers using integers computations
    1 project | /r/vba | 11 Dec 2022
    Now, with the Float class module, it is possible to compute addition, multiplication and division of real/rational numbers with a precision not existing in any native VBA data type. These features make the class much more attractive for numerical experiments and future enhancements. Much more, I have not found a VBA library with similar features in the whole Internet, which could make it the first of its kind.
  • Arithmetic over huge integers with VBA
    1 project | /r/vba | 28 Nov 2022
    The [VBA-float](https://github.com/ws-garcia/VBA-float) class module handles representation of numerical values as scientific notation using strings, allowing to obtain several cohorts for the same number.