]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_F_cos.cc
* */*: Convert encoding from ISO 8859-1 to UTF-8.
[cln.git] / src / float / transcendental / cl_F_cos.cc
index 1cb5a5e284c57f19a24fdb013450a75d3a938af7..7c044700fffeec613633c21a4fac2dcb4f013359 100644 (file)
@@ -20,8 +20,8 @@ namespace cln {
 const cl_F cos (const cl_F& x)
 {
 // Methode:
-// Genauigkeit erhöhen,
-// (q,r) := (round x (float pi x)), so daß |r|<=pi/2.
+// Genauigkeit erhöhen,
+// (q,r) := (round x (float pi x)), so daß |r|<=pi/2.
 // e := Exponent aus (decode-float r), d := (float-digits r)
 // Bei r=0.0 oder e<=-d/2 liefere 1.0
 //   (denn bei e<=-d/2 ist r^2/2 < 2^(-d)/2 = 2^(-d-1), also
@@ -31,7 +31,7 @@ const cl_F cos (const cl_F& x)
 //   (sin(s)/s)^2 errechnen, cos(r) = 1-r*s*(sin(s)/s)^2 errechnen.
 // Falls q ungerade: Vorzeichenwechsel.
 
-       // Rechengenauigkeit erhöhen und durch pi dividieren:
+       // Rechengenauigkeit erhöhen und durch pi dividieren:
        var cl_F cos_r;
        if (longfloatp(x)) {
                DeclareType(cl_LF,x);