Problem I wrote a complex number class using JS for practice. class Complex { constructor(real,imag) { this.real = real; this.imag […]
Tag: complex-numbers
Implementing Gaussian integers in Haskell
Problem Currently my code (at GitHub) is this: module Gaussian where import qualified Data.Complex as Complex — Enables toComplex. — […]