LongCalcNetCore 0.3.2
See the version list below for details.
dotnet add package LongCalcNetCore --version 0.3.2
NuGet\Install-Package LongCalcNetCore -Version 0.3.2
<PackageReference Include="LongCalcNetCore" Version="0.3.2" />
paket add LongCalcNetCore --version 0.3.2
#r "nuget: LongCalcNetCore, 0.3.2"
// Install LongCalcNetCore as a Cake Addin #addin nuget:?package=LongCalcNetCore&version=0.3.2 // Install LongCalcNetCore as a Cake Tool #tool nuget:?package=LongCalcNetCore&version=0.3.2
This library, built with and accessible by Visual Studio (2021) and using .Net's BigInteger for the underlying integer math, supplies a variety of math functions and utilities with precisions as large as 2,000,000 base 10 digits. The underlying objects are bf (for 'big float') real values comprised of a BigInteger mantissa and base 2 exponent, bcr (for complex numbers expressed in the rectangular coordinates) comprised of a bf real part and a bf imaginary part, and bcp (for complex numbers expressed in the polar coordinates) comprised of a bf radius and a bf angle. Functions supported include real and complex versions of: basic arithmetic, trigonometric functions, log and exponential functions, hyperbolic functions and the inverses of all of these, base conversions between bases up to 64, conversions between rectangular and polar coordinates, and some special functions such as Euler, Bernoulli, Gamma, Zeta, and BesselJ. The library also includes a 'bd' (for bigdecimal) object with fractional base 10 digits up to capability of BigInteger. The library also supports algebra on matrices of bf, bd, and bcr objects. This version of LongCalcNetCore depends on .Net 6.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
0.5.3 | 133 | 10/1/2024 | |
0.5.2 | 177 | 1/23/2024 | |
0.5.1 | 106 | 1/22/2024 | |
0.5.0 | 166 | 1/22/2024 | |
0.3.2 | 315 | 2/10/2023 | |
0.3.1 | 356 | 12/28/2021 | |
0.2.5 | 282 | 12/28/2021 | |
0.2.4 | 523 | 10/2/2021 | |
0.2.3 | 330 | 8/1/2021 | |
0.2.2 | 405 | 3/26/2021 | |
0.2.1 | 355 | 3/26/2021 | |
0.2.0 | 422 | 11/20/2020 | |
0.1.22 | 441 | 10/15/2020 | |
0.1.21 | 476 | 9/24/2020 | |
0.1.20 | 471 | 9/18/2020 | |
0.1.19 | 528 | 9/17/2020 | |
0.1.18 | 499 | 9/6/2020 | |
0.1.17 | 455 | 8/25/2020 | |
0.1.16 | 443 | 8/5/2020 | |
0.1.15 | 856 | 7/31/2020 | |
0.1.14 | 828 | 7/30/2020 | |
0.1.13 | 470 | 7/29/2020 | |
0.1.12 | 471 | 7/28/2020 | |
0.1.11 | 447 | 5/22/2020 | |
0.1.10 | 463 | 5/19/2020 | |
0.1.9 | 462 | 5/17/2020 | |
0.1.8 | 457 | 5/17/2020 | |
0.1.7 | 464 | 5/11/2020 | |
0.1.6 | 542 | 5/3/2020 | |
0.1.5 | 454 | 4/26/2020 | |
0.1.4 | 441 | 4/23/2020 | |
0.1.3 | 472 | 4/4/2020 | |
0.1.2 | 625 | 4/1/2020 | |
0.1.1 | 647 | 3/31/2020 | |
0.1.0 | 679 | 3/31/2020 |
Corrected a long-standing problem in the initialization of a bf object from a string (new bf(double x)) in which
the precision of output was always 20 decimal digits rather than the expected precision of
bf.GlobalPrecision + bf.Threshold. This problem could be avoided in earlier versions of this software by first
converting the input to a string, such as in: double x = 3.14; bf x2 = new bf("3.14");
or: double x = 3.14; bf x2 = new bf(x.ToString());
In the trigonometric functions, the exact value is now returned for the function evaluated exactly at some frequently-used angles measured in degrees or gradians.
As an example, if x is equal to exactly 30 degrees, x.Sin(Precision, AngleType.Degrees) now returns bf(1, -1) (or .5) exactly.
In the functions to initialize a bf value from a file (ie: bf(uint _base, string FilePath, long Base10Precision)) an exact value is now returned if the mantissa in the file text is encoded in a _base which is a power of 2.
This feature already existed when initializing a bf value from a string (ie: bf(string x, int BaseIn, long Base10Precision)).
Checks for arithmetic overflow or underflow are again compiler-included in this release.