From Jason Turner

[c.math.hypot3]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpglr1ftnf/{from.md → to.md} +10 -0
tmp/tmpglr1ftnf/{from.md → to.md} RENAMED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ ### Three-dimensional hypotenuse <a id="c.math.hypot3">[[c.math.hypot3]]</a>
2
+
3
+ ``` cpp
4
+ float hypot(float x, float y, float z);
5
+ double hypot(double x, double y, double z);
6
+ long double hypot(long double x, long double y, long double z);
7
+ ```
8
+
9
+ *Returns:* $\sqrt{x^2+y^2+z^2}$.
10
+