fix complex-number typo

This commit is contained in:
chocolateboy
2015-10-22 19:04:30 +01:00
parent 1e27df9488
commit b5929b4ee9

View File

@@ -148,7 +148,7 @@ var a = math.complex(3, -1)
//=> { re: 3, im: -1 }
var b = math.sqrt(-1)
//=> { re: 0, im: -1 }
//=> { re: 0, im: 1 }
console.log(math.multiply(a, b).toString())
//=> '1 + 3i'