LongCalcNetCore 0.1.9
See the version list below for details.
dotnet add package LongCalcNetCore --version 0.1.9
NuGet\Install-Package LongCalcNetCore -Version 0.1.9
<PackageReference Include="LongCalcNetCore" Version="0.1.9" />
paket add LongCalcNetCore --version 0.1.9
#r "nuget: LongCalcNetCore, 0.1.9"
// Install LongCalcNetCore as a Cake Addin #addin nuget:?package=LongCalcNetCore&version=0.1.9 // Install LongCalcNetCore as a Cake Tool #tool nuget:?package=LongCalcNetCore&version=0.1.9
LongCalcNetCore Arbitrary Precision Float and Complex Number Library
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
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 | 156 | 10/1/2024 | |
0.5.2 | 183 | 1/23/2024 | |
0.5.1 | 114 | 1/22/2024 | |
0.5.0 | 172 | 1/22/2024 | |
0.3.2 | 321 | 2/10/2023 | |
0.3.1 | 364 | 12/28/2021 | |
0.2.5 | 292 | 12/28/2021 | |
0.2.4 | 531 | 10/2/2021 | |
0.2.3 | 338 | 8/1/2021 | |
0.2.2 | 413 | 3/26/2021 | |
0.2.1 | 363 | 3/26/2021 | |
0.2.0 | 431 | 11/20/2020 | |
0.1.22 | 451 | 10/15/2020 | |
0.1.21 | 484 | 9/24/2020 | |
0.1.20 | 479 | 9/18/2020 | |
0.1.19 | 536 | 9/17/2020 | |
0.1.18 | 507 | 9/6/2020 | |
0.1.17 | 463 | 8/25/2020 | |
0.1.16 | 451 | 8/5/2020 | |
0.1.15 | 864 | 7/31/2020 | |
0.1.14 | 836 | 7/30/2020 | |
0.1.13 | 478 | 7/29/2020 | |
0.1.12 | 480 | 7/28/2020 | |
0.1.11 | 455 | 5/22/2020 | |
0.1.10 | 471 | 5/19/2020 | |
0.1.9 | 470 | 5/17/2020 | |
0.1.8 | 465 | 5/17/2020 | |
0.1.7 | 472 | 5/11/2020 | |
0.1.6 | 552 | 5/3/2020 | |
0.1.5 | 464 | 4/26/2020 | |
0.1.4 | 449 | 4/23/2020 | |
0.1.3 | 480 | 4/4/2020 | |
0.1.2 | 633 | 4/1/2020 | |
0.1.1 | 655 | 3/31/2020 | |
0.1.0 | 687 | 3/31/2020 |
Reversed the changes made in version 0.1.7. Instead, made an effort to ensure that the output from the various public bf functions was accurate to Precision places, counting from first non-zero digit (if output is non-zero). This resulted in changes to the following bf functions: Exp, Cos, ArcTan, ArcCos, ArcSin, Log.
If someone desires to output a bf object x.toString(... Precision, ...) in such a way as that in version 0.1.7, it only requires this code snippet:
string output = "0.";
if (!x.IsZero) { if (x.Abs() lt; new bf(1)) { Precision -= (long)Math.Abs(Log10(x.Abs())); if (Precision gt; 0) output = x.toString(... Precision, ...); } else output = x.toString(... Precision, ...); }
(where lt; is the less than character and gt; is the greater than character)
I should have mentioned in the release notes of the previous version that the internal limitation on x.Exp is that |x| be less than about 1.e+90180. For a value of x about this large, it requires probably several hours to compute x.Exp to 1,000 digits on a rather recent i5 machine with 20Gb memory.
Checks for arithmetic overflow or underflow are again compiler-included in this release.