@@ -28,7 +28,7 @@ import { Complex128 } from '@stdlib/types/complex';
2828*/
2929interface Routine {
3030 /**
31- * Applies a plane rotation.
31+ * Applies a plane rotation with real cosine and complex sine .
3232 *
3333 * @param N - number of indexed elements
3434 * @param zx - first input array
@@ -55,24 +55,24 @@ interface Routine {
5555 * // returns <Complex128>
5656 *
5757 * var re = real( z );
58- * // returns -1.1
58+ * // returns ~ -1.1
5959 *
6060 * var im = imag( z );
61- * // returns -0.2
61+ * // returns ~ -0.2
6262 *
6363 * z = zx.get( 0 );
6464 * // returns <Complex128>
6565 *
6666 * re = real( z );
67- * // returns 0.8
67+ * // returns ~ 0.8
6868 *
6969 * im = imag( z );
70- * // returns 1.6
70+ * // returns ~ 1.6
7171 */
7272 ( N : number , zx : Complex128Array , strideX : number , zy : Complex128Array , strideY : number , c : number , s : Complex128 ) : Complex128Array ;
7373
7474 /**
75- * Applies a plane rotation using alternative indexing semantics.
75+ * Applies a plane rotation with real cosine and complex sine using alternative indexing semantics.
7676 *
7777 * @param N - number of indexed elements
7878 * @param zx - first input array
@@ -101,25 +101,25 @@ interface Routine {
101101 * // returns <Complex128>
102102 *
103103 * var re = real( z );
104- * // returns -1.1
104+ * // returns ~ -1.1
105105 *
106106 * var im = imag( z );
107- * // returns -0.2
107+ * // returns ~ -0.2
108108 *
109109 * z = zx.get( 0 );
110110 * // returns <Complex128>
111111 *
112112 * re = real( z );
113- * // returns 0.8
113+ * // returns ~ 0.8
114114 *
115115 * im = imag( z );
116- * // returns 1.6
116+ * // returns ~ 1.6
117117 */
118118 ndarray ( N : number , zx : Complex128Array , strideX : number , offsetX : number , zy : Complex128Array , strideY : number , offsetY : number , c : number , s : Complex128 ) : Complex128Array ;
119119}
120120
121121/**
122- * Applies a plane rotation.
122+ * Applies a plane rotation with real cosine and complex sine .
123123*
124124* @param N - number of indexed elements
125125* @param zx - first input array
@@ -146,19 +146,19 @@ interface Routine {
146146* // returns <Complex128>
147147*
148148* var re = real( z );
149- * // returns -1.1
149+ * // returns ~ -1.1
150150*
151151* var im = imag( z );
152- * // returns -0.2
152+ * // returns ~ -0.2
153153*
154154* z = zx.get( 0 );
155155* // returns <Complex128>
156156*
157157* re = real( z );
158- * // returns 0.8
158+ * // returns ~ 0.8
159159*
160160* im = imag( z );
161- * // returns 1.6
161+ * // returns ~ 1.6
162162*
163163* @example
164164* var Complex128Array = require( '@stdlib/array/complex128' );
@@ -176,19 +176,19 @@ interface Routine {
176176* // returns <Complex128>
177177*
178178* var re = real( z );
179- * // returns -1.1
179+ * // returns ~ -1.1
180180*
181181* var im = imag( z );
182- * // returns -0.2
182+ * // returns ~ -0.2
183183*
184184* z = zx.get( 0 );
185185* // returns <Complex128>
186186*
187187* re = real( z );
188- * // returns 0.8
188+ * // returns ~ 0.8
189189*
190190* im = imag( z );
191- * // returns 1.6
191+ * // returns ~ 1.6
192192*/
193193declare var zrot : Routine ;
194194
0 commit comments