LongCalcNetCore 0.3.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package LongCalcNetCore --version 0.3.1
NuGet\Install-Package LongCalcNetCore -Version 0.3.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LongCalcNetCore" Version="0.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LongCalcNetCore --version 0.3.1
#r "nuget: LongCalcNetCore, 0.3.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LongCalcNetCore as a Cake Addin
#addin nuget:?package=LongCalcNetCore&version=0.3.1

// Install LongCalcNetCore as a Cake Tool
#tool nuget:?package=LongCalcNetCore&version=0.3.1

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. Use of the included Windows app LongCalcNetCoreDemo.exe function assumes that the files LongCalcNetCoreDemo.exe, LongCalcNetCoreDemo.dll, and LongCalcNetCore.dll reside in a common folder/directory. This version of LongCalcNetCore depends on .Net 6.

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.2 128 1/23/2024
0.5.1 77 1/22/2024
0.5.0 132 1/22/2024
0.3.2 286 2/10/2023
0.3.1 323 12/28/2021
0.2.5 256 12/28/2021
0.2.4 491 10/2/2021
0.2.3 297 8/1/2021
0.2.2 377 3/26/2021
0.2.1 324 3/26/2021
0.2.0 394 11/20/2020
0.1.22 419 10/15/2020
0.1.21 444 9/24/2020
0.1.20 439 9/18/2020
0.1.19 503 9/17/2020
0.1.18 464 9/6/2020
0.1.17 421 8/25/2020
0.1.16 425 8/5/2020
0.1.15 821 7/31/2020
0.1.14 789 7/30/2020
0.1.13 441 7/29/2020
0.1.12 440 7/28/2020
0.1.11 419 5/22/2020
0.1.10 436 5/19/2020
0.1.9 433 5/17/2020
0.1.8 428 5/17/2020
0.1.7 428 5/11/2020
0.1.6 511 5/3/2020
0.1.5 433 4/26/2020
0.1.4 415 4/23/2020
0.1.3 435 4/4/2020
0.1.2 598 4/1/2020
0.1.1 615 3/31/2020
0.1.0 653 3/31/2020

Ported code from LongCalcNetCore 0.2.5 to now target .Net 6.

Checks for arithmetic overflow or underflow are again compiler-included in this release.