File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/math/base/special/cceilf Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,17 +36,9 @@ Rounds each component of a single-precision complex floating-point number toward
3636
3737``` javascript
3838var Complex64 = require ( ' @stdlib/complex/float32/ctor' );
39- var real = require ( ' @stdlib/complex/float32/real' );
40- var imag = require ( ' @stdlib/complex/float32/imag' );
4139
4240var v = cceilf ( new Complex64 ( - 1.5 , 2.5 ) );
43- // returns <Complex64>
44-
45- var re = real ( v );
46- // returns -1.0
47-
48- var im = imag ( v );
49- // returns 3.0
41+ // returns <Complex64>[ -1.0, 3.0 ]
5042```
5143
5244</section >
Original file line number Diff line number Diff line change 1616 Examples
1717 --------
1818 > var v = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( -1.5, 2.5 ) )
19- <Complex64>
20- > var re = {{alias:@stdlib/complex/float32/real}}( v )
21- -1.0
22- > var im = {{alias:@stdlib/complex/float32/imag}}( v )
23- 3.0
19+ <Complex64>[ -1.0, 3.0 ]
2420
2521 See Also
2622 --------
You can’t perform that action at this time.
0 commit comments