forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharg.js
More file actions
54 lines (48 loc) · 1.38 KB
/
arg.js
File metadata and controls
54 lines (48 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { factory } from '../../utils/factory.js'
import { deepMap } from '../../utils/collection.js'
const name = 'arg'
const dependencies = ['typed']
export const createArg = /* #__PURE__ */ factory(name, dependencies, ({ typed }) => {
/**
* Compute the argument of a complex value.
* For a complex number `a + bi`, the argument is computed as `atan2(b, a)`.
*
* For matrices, the function is evaluated element wise.
*
* Syntax:
*
* math.arg(x)
*
* Examples:
*
* const a = math.complex(2, 2)
* math.arg(a) / math.pi // returns number 0.25
*
* const b = math.complex('2 + 3i')
* math.arg(b) // returns number 0.982793723247329
* math.atan2(3, 2) // returns number 0.982793723247329
*
* See also:
*
* re, im, conj, abs
*
* @param {number | BigNumber | Complex | Array | Matrix} x
* A complex number or array with complex numbers
* @return {number | BigNumber | Array | Matrix} The argument of x
*/
return typed(name, {
number: function (x) {
return Math.atan2(0, x)
},
BigNumber: function (x) {
return x.constructor.atan2(0, x)
},
Complex: function (x) {
return x.arg()
},
// TODO: implement BigNumber support for function arg
'Array | Matrix': function (x) {
return deepMap(x, this)
}
})
})