This language bar is your friend. Select your favorite languages!
Select your favorite languages :
- Or search :
x = (0 :+ 1) * ((0 - 2) :+ 3)
Declaration and initialization is not required in Haskell.
As prefix negation in Haskell is tricky, I've used (0 - 2) for (-2).
Haskell variables are immutable, therefore "multiply it by two" is both unnecessary and too complicated.
As prefix negation in Haskell is tricky, I've used (0 - 2) for (-2).
Haskell variables are immutable, therefore "multiply it by two" is both unnecessary and too complicated.
var x = math.complex(-2, 3);
x = math.multiply(x, math.i);
JS has no built-in complex numbers. The math.js library was used in this example.
Complex x = new Complex(-2.0, 3.0);
x = x.multiply(Complex.I);
This uses the Apache Commons Math library.
(define x -2+3i)
(display (* x 0+1i))
Most Schemes have a specialized reader syntax for complex numbers.