Skip to content

tk-yoshimura/ComplexAlgebra

Repository files navigation

ComplexAlgebra

Complex Algebra Implements

Requirement

.NET 8.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