mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
27 lines
618 B
Markdown
27 lines
618 B
Markdown
# Function atan2
|
|
|
|
Computes the principal value of the arc tangent of y/x in radians
|
|
|
|
atan2(y, x)
|
|
|
|
For matrices, the function is evaluated element wise.
|
|
|
|
|
|
### Parameters
|
|
|
|
Parameter | Type | Description
|
|
--------- | ---- | -----------
|
|
`y` | Number | Boolean | Complex | Array | Matrix |
|
|
`x` | Number | Boolean | Complex | Array | Matrix |
|
|
|
|
### Returns
|
|
|
|
Type | Description
|
|
---- | -----------
|
|
Number | Complex | Array | Matrix | res
|
|
|
|
|
|
|
|
|
|
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
|