Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ComplexAlgebra

Complex Algebra Implements

Requirement

.NET 10.0
AVX2 suppoted CPU. (Intel:Haswell(2013)-, AMD:Excavator(2015)-)
DoubleDouble
DoubleDoubleComplex
Algebra

Install

Download DLL
Download Nuget

Usage

// solve for v: Av=x
ComplexMatrix a = new Complex[,] { { (1, 1), (1, 2) }, { (1, 3), (4, -1) } };
ComplexVector x = ((4, 2), (-1, 3));

ComplexVector v = ComplexMatrix.Solve(a, x);

Licence

MIT

Author

T.Yoshimura