C = hypot(A, B)
| Parameter | Description |
|---|---|
| A | a variable: scalars, vectors, matrices, multidimensional arrays single or double |
| B | a variable: scalars, vectors, matrices, multidimensional arrays single or double |
| Parameter | Description |
|---|---|
| R | result of hypot: hypothenuse. |
hypot computes the hypothenuse.
If one or both inputs is NaN, then hypot returns NaN.
R = hypot(1e308, 1e308)
R = hypot(1e309, 1e309)
| Version | Description |
|---|---|
| 1.0.0 | initial version |