Tagged Questions

3
votes
3answers
892 views

Haskell and Quadratics

I have to write a program to solve quadratics, returning a complex number result. I've gotten so far, with defining a complex number, declaring it to be part of num, so +,- and * - ing can take ...
2
votes
3answers
590 views

Complex iterations in haskell

Hi I have this complex iterations program I wrote in TI Basic to perform a basic iteration on a complex number and then give the magnitude of the result: INPUT “SEED?”, C INPUT “ITERATIONS?”, N C→Z ...
2
votes
3answers
532 views

Haskell floating point error

So I have finished creating my own complex number data type in haskell. I've also, thanks to another question on here, got a function that will solve a quadratic equation. The only problem now is ...