MultiPrecision Complex and Quaternion Implements
.NET 8.0
AVX2 suppoted CPU. (Intel:Haswell(2013)-, AMD:Excavator(2015)-)
MultiPrecision
Complex<Pow2.N8> z = "1+16i"; // z = (1, 16), new Complex<Pow2.N8>(1, 16);
Complex<Pow2.N8> c = z * z;
Console.WriteLine(c);