![]() |
VOOZH | about |
dotnet add package ExtendedNumerics.BigComplex --version 3000.1.0
NuGet\Install-Package ExtendedNumerics.BigComplex -Version 3000.1.0
<PackageReference Include="ExtendedNumerics.BigComplex" Version="3000.1.0" />
<PackageVersion Include="ExtendedNumerics.BigComplex" Version="3000.1.0" />Directory.Packages.props
<PackageReference Include="ExtendedNumerics.BigComplex" />Project file
paket add ExtendedNumerics.BigComplex --version 3000.1.0
#r "nuget: ExtendedNumerics.BigComplex, 3000.1.0"
#:package ExtendedNumerics.BigComplex@3000.1.0
#addin nuget:?package=ExtendedNumerics.BigComplex&version=3000.1.0Install as a Cake Addin
#tool nuget:?package=ExtendedNumerics.BigComplex&version=3000.1.0Install as a Cake Tool
Arbitrary precision complex (imaginary) numbers
E.g.
0 +1 i
OR
sqrt(-0.5) = 0 +0.7071067811865475244008443621048490392848359376884... i
New/Major Breaking Change: As of version 3000.0.0.316, BigComplex's Real and Imaginary parts are of type BigDecimal (NuGet). Ergo, this library requires the BigDecimal library.
If you do not wish to take BigDecimal as a dependency, and/or are fine with the real and imaginary parts being restricted to being integers, check out the BigIntegerImplementation branch of this repository.
Also available on nuget: https://www.nuget.org/packages/ExtendedNumerics.BigComplex
I've written a number of other polynomial implementations and numeric types catering to various specific scenarios. Depending on what you're trying to do, another implementation of this same library might be more appropriate. All of my polynomial projects should have feature parity, where appropriate[^1].
[^1]: For example, the ComplexPolynomial implementation may be missing certain operations (namely: Irreducibility), because such a notion does not make sense or is ill defined in the context of complex numbers).
GenericArithmetic - A core math library. Its a class of static methods that allows you to perform arithmetic on an arbitrary numeric type, represented by the generic type T, who's concrete type is decided by the caller. This is implemented using System.Linq.Expressions and reflection to resolve the type's static overloadable operator methods at runtime, so it works on all the .NET numeric types automagically, as well as any custom numeric type, provided it overloads the numeric operators and standard method names for other common functions (Min, Max, Abs, Sqrt, Parse, Sign, Log, Round, etc.). Every generic arithmetic class listed below takes a dependency on this class.
Polynomial - The original. A univariate polynomial that uses System.Numerics.BigInteger as the indeterminate type.
GenericPolynomial - A univariate polynomial library that allows the indeterminate to be of an arbitrary type, as long as said type implements operator overloading. This is implemented dynamically, at run time, calling the operator overload methods using Linq.Expressions and reflection.
CSharp11Preview.GenericMath.Polynomial - A univariate polynomial library that allows the indeterminate to be of an arbitrary type, but this version is implemented using C# 11's new Generic Math via static virtual members in interfaces.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 is compatible. |
| .NET Standard | netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net45 net45 is compatible. net451 net451 was computed. net452 net452 was computed. net46 net46 is compatible. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 is compatible. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on ExtendedNumerics.BigComplex:
| Package | Downloads |
|---|---|
|
MathEngine.Values
Package Description |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3000.1.0 | 164 | 3/14/2026 |
| 3000.0.2 | 375 | 5/12/2025 |
| 3000.0.0.316 | 466 | 11/11/2024 |
| 2023.122.420 | 818 | 5/2/2023 |
| 2023.122.213 | 630 | 5/2/2023 |
| 2023.121.1927 | 663 | 5/2/2023 |
| 2022.195.434 | 925 | 7/14/2022 |
| 1.0.0 | 1,400 | 9/2/2019 |