MultiPrecision Complex Algebra Implements
.NET 8.0
AVX2 suppoted CPU. (Intel:Haswell(2013)-, AMD:Excavator(2015)-)
MultiPrecision
MultiPrecisionComplex
MultiPrecisionAlgebra
// solve for v: Av=x
ComplexMatrix<Pow2.N4> a = new Complex<Pow2.N4>[,] { { (1, 1), (1, 2) }, { (1, 3), (4, -1) } };
ComplexVector<Pow2.N4> x = ((4, 2), (-1, 3));
ComplexVector<Pow2.N4> v = ComplexMatrix<Pow2.N4>.Solve(a, x);