Skip to content

tk-yoshimura/MultiPrecisionAlgebra

Repository files navigation

MultiPrecisionAlgebra

MultiPrecision Algebra

Requirement

.NET 8.0
AVX2 suppoted CPU. (Intel:Haswell(2013)-, AMD:Excavator(2015)-)
MultiPrecision

Install

Download DLL
Download Nuget

Usage

// solve for v: Av=x
Matrix<Pow2.N4> a = new double[,] { { 1, 2 }, { 3, 4 } };
Vector<Pow2.N4> x = (4, 3);

Vector<Pow2.N4> v = Matrix<Pow2.N4>.Solve(a, x);

Licence

MIT

Author

T.Yoshimura