We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
math/base/special
1 parent f46aad3 commit 8145443Copy full SHA for 8145443
lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts
@@ -3596,17 +3596,9 @@ interface Namespace {
3596
*
3597
* @example
3598
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
3599
- * var real = require( '@stdlib/complex/float32/real' );
3600
- * var imag = require( '@stdlib/complex/float32/imag' );
3601
3602
* var v = ns.croundf( new Complex64( -4.2, 5.5 ) );
3603
- * // returns <Complex64>
3604
- *
3605
- * var re = real( v );
3606
- * // returns -4.0
3607
3608
- * var im = imag( v );
3609
- * // returns 6.0
+ * // returns <Complex64>[ -4.0, 6.0 ]
3610
*/
3611
croundf: typeof croundf;
3612
0 commit comments