cmake build system: visiblity support for clang
[supercollider.git] / Help / BinaryOps / hypotApx.html
blob4fff4786169860107a56309bb4d11e4ff1df3d16
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <meta http-equiv="Content-Style-Type" content="text/css">
6 <title></title>
7 <meta name="Generator" content="Cocoa HTML Writer">
8 <meta name="CocoaVersion" content="824.42">
9 <style type="text/css">
10 p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Helvetica}
11 p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px}
12 p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica}
13 p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Monaco; min-height: 16.0px}
14 span.Apple-tab-span {white-space:pre}
15 </style>
16 </head>
17 <body>
18 <p class="p1"><b>hypotApx<span class="Apple-tab-span"> </span><span class="Apple-tab-span"> </span>hypotenuse approximation</b></p>
19 <p class="p2"><br></p>
20 <p class="p3"><b>BinaryOperator</b></p>
21 <p class="p2"><br></p>
22 <p class="p3"><b>hypotApx(x, y)</b></p>
23 <p class="p3"><b>x hypotApx: y</b></p>
24 <p class="p3"><b>x.hypotApx(y)</b></p>
25 <p class="p2"><br></p>
26 <p class="p3">Returns an approximation of the square root of the sum of the squares of x and y.<span class="Apple-converted-space"> </span></p>
27 <p class="p2"><br></p>
28 <p class="p3">The formula used is :</p>
29 <p class="p2"><br></p>
30 <p class="p3">abs(x) + abs(y) - ((sqrt(2) - 1) * min(abs(x), abs(y)))</p>
31 <p class="p2"><br></p>
32 <p class="p3">hypotApx is used to implement Complex method magnitudeApx.</p>
33 <p class="p3">This should not be used for simulating a doppler shift because it is discontinuous. Use hypot.</p>
34 <p class="p2"><br></p>
35 <p class="p3">See also <b>hypot</b>, <b>atan2</b>.</p>
36 <p class="p4"><br></p>
37 </body>
38 </html>