TYoshimura.DoubleDouble.Complex
                              
                            
                                1.8.3
                            
                        
                    dotnet add package TYoshimura.DoubleDouble.Complex --version 1.8.3
NuGet\Install-Package TYoshimura.DoubleDouble.Complex -Version 1.8.3
        
        
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="TYoshimura.DoubleDouble.Complex" Version="1.8.3" />
        
        
For projects that support PackageReference, copy this XML node into the project file to reference the package.
                    
    
    <PackageVersion Include="TYoshimura.DoubleDouble.Complex" Version="1.8.3" />
<PackageReference Include="TYoshimura.DoubleDouble.Complex" />
        
        
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
                    
    
    paket add TYoshimura.DoubleDouble.Complex --version 1.8.3
        
        
 The NuGet Team does not provide support for this client. Please contact its maintainers for support.
                    
    
    #r "nuget: TYoshimura.DoubleDouble.Complex, 1.8.3"
        
        
#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.
                    
    
    #:package TYoshimura.DoubleDouble.Complex@1.8.3
        
        
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
                    
    
    #addin nuget:?package=TYoshimura.DoubleDouble.Complex&version=1.8.3
#tool nuget:?package=TYoshimura.DoubleDouble.Complex&version=1.8.3
        
        
 The NuGet Team does not provide support for this client. Please contact its maintainers for support.
                    
    
    DoubleDoubleComplex
Double-Double Complex and Quaternion Implements
Requirement
.NET 8.0
DoubleDouble
Install
Functions
| function | note | 
|---|---|
| Complex.Sqrt(z) | |
| Complex.Cbrt(z) | |
| Complex.RootN(z, n) | |
| Complex.Log2(z) | |
| Complex.Log(z) | |
| Complex.Log(z, b) | |
| Complex.Log10(z) | |
| Complex.Log1p(z) | log(1+z) | 
| Complex.Pow2(z) | |
| Complex.Pow(z, p) | |
| Complex.Exp(z) | |
| Complex.Sin(z) | |
| Complex.Cos(z) | |
| Complex.Tan(z) | |
| Complex.SinPi(z) | sin(πz) | 
| Complex.CosPi(z) | cos(πz) | 
| Complex.TanPi(z) | tan(πz) | 
| Complex.Sinh(z) | |
| Complex.Cosh(z) | |
| Complex.Tanh(z) | |
| Complex.Asin(z) | Accuracy deteriorates near z=-1,1. | 
| Complex.Acos(z) | Accuracy deteriorates near z=-1,1. | 
| Complex.Atan(z) | |
| Complex.Asinh(z) | |
| Complex.Acosh(z) | |
| Complex.Atanh(z) | Accuracy deteriorates near z=-1,1. | 
| Complex.Gamma(z) | Accuracy deteriorates near non-positive intergers. If z is Natual number lass than 35, an exact integer value is returned. | 
| Complex.LogGamma(z) | |
| Complex.Digamma(z) | Near the positive root, polynomial interpolation is used. | 
| Complex.Erf(z) | |
| Complex.Erfc(z) | |
| Complex.Erfcx(z) | |
| Complex.FresnelC(z) | |
| Complex.FresnelS(z) | |
| Complex.BesselJ(nu, z) | Accuracy deteriorates near root. abs(nu) ≤ 256 | 
| Complex.BesselY(nu, z) | Accuracy deteriorates near root. abs(nu) ≤ 256 | 
| Complex.BesselI(nu, z) | Accuracy deteriorates near root. abs(nu) ≤ 256 | 
| Complex.BesselK(nu, z) | Accuracy deteriorates near root. abs(nu) ≤ 256 | 
| Complex.HankelH1(nu, z) | Accuracy deteriorates near root. abs(nu) ≤ 256 | 
| Complex.HankelH2(nu, z) | Accuracy deteriorates near root. abs(nu) ≤ 256 | 
| Complex.AiryAi(z) | Accuracy deteriorates near root. | 
| Complex.AiryBi(z) | Accuracy deteriorates near root. | 
| Complex.E1(z) | exponential integral | 
| Complex.Ei(z) | exponential integral | 
| Complex.Ein(z) | complementary exponential integral | 
| Complex.Si(z) | sine integral | 
| Complex.Ci(z) | cosine integral | 
| Complex.Shi(z) | hyperbolic sine integral | 
| Complex.Chi(z) | hyperbolic cosine integral | 
| Complex.Sinc(z) | sin(z)/z | 
| Complex.Sinhc(z) | sinh(z)/z | 
Usage
Complex z = "1+16i"; // z = (1, 16), new Complex(1, 16);
Complex c = Complex.Gamma(z);
Console.WriteLine(c);
Licence
Author
| Product | Versions Compatible and additional computed target framework versions. | 
|---|---|
| .NET | net8.0 is compatible. 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. | 
        
        Compatible target framework(s)
    
    
        
        Included target framework(s) (in package)
    
    Learn more about Target Frameworks and .NET Standard.
- 
                                                    net8.0- TYoshimura.DoubleDouble (>= 4.2.6)
 
NuGet packages (4)
Showing the top 4 NuGet packages that depend on TYoshimura.DoubleDouble.Complex:
| Package | Downloads | 
|---|---|
| TYoshimura.DoubleDouble.Statistic Double-Double Statistic Implements | |
| TYoshimura.ComplexAlgebra Complex Algebra | |
| TYoshimura.DoubleDouble.AdvancedIntegrate Double-Double Numerical Advanced Integration Implements | |
| TYoshimura.DoubleDouble.Geometry Double-Double Geometry 2D/3D Implements | 
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | 
|---|---|---|
| 1.8.3 | 252 | 11/23/2024 | 
| 1.8.2 | 163 | 11/22/2024 | 
| 1.8.1 | 153 | 11/19/2024 | 
| 1.8.0 | 177 | 11/18/2024 | 
| 1.7.1 | 157 | 11/17/2024 | 
| 1.7.0 | 181 | 11/14/2024 | 
| 1.6.3 | 180 | 11/13/2024 | 
| 1.6.2 | 145 | 11/13/2024 | 
| 1.6.1 | 143 | 11/13/2024 | 
| 1.6.0 | 257 | 10/31/2024 | 
| 1.5.8 | 158 | 10/29/2024 | 
| 1.5.7 | 165 | 10/29/2024 | 
| 1.5.6 | 150 | 10/23/2024 | 
| 1.5.5 | 150 | 10/21/2024 | 
| 1.5.4 | 192 | 10/18/2024 | 
| 1.5.3 | 151 | 10/17/2024 | 
| 1.5.2 | 184 | 10/15/2024 | 
| 1.5.1 | 173 | 10/14/2024 | 
| 1.5.0 | 181 | 10/12/2024 | 
| 1.4.9 | 202 | 9/18/2024 | 
| 1.4.8 | 196 | 9/15/2024 | 
| 1.4.7 | 241 | 9/7/2024 | 
| 1.4.6 | 258 | 8/22/2024 | 
| 1.4.5 | 200 | 8/20/2024 | 
| 1.4.4 | 198 | 8/18/2024 | 
| 1.4.3 | 167 | 8/17/2024 | 
| 1.4.2 | 178 | 8/17/2024 | 
| 1.4.1 | 180 | 8/17/2024 | 
| 1.4.0 | 808 | 1/20/2024 | 
| 1.3.9 | 220 | 10/8/2023 | 
| 1.3.8 | 168 | 10/7/2023 | 
| 1.3.7 | 219 | 9/19/2023 | 
| 1.3.6 | 168 | 9/19/2023 | 
| 1.3.5 | 164 | 9/18/2023 | 
| 1.3.4 | 164 | 9/16/2023 | 
| 1.3.3 | 200 | 9/15/2023 | 
| 1.3.2 | 204 | 9/14/2023 | 
| 1.3.1 | 216 | 9/9/2023 | 
| 1.3.0 | 190 | 9/4/2023 | 
| 1.2.1 | 325 | 3/13/2023 | 
| 1.2.0 | 501 | 9/4/2022 | 
| 1.1.0 | 558 | 1/21/2022 | 
| 1.0.0 | 371 | 1/9/2022 | 
fix: quaternion cast vector