Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,9 @@ import { Complex64 } from '@stdlib/types/complex';
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var real = require( '@stdlib/complex/float32/real' );
* var imag = require( '@stdlib/complex/float32/imag' );
*
* var v = cceilf( new Complex64( -1.5, 2.5 ) );
* // returns <Complex64>
*
* var re = real( v );
* // returns -1.0
*
* var im = imag( v );
* // returns 3.0
* // returns <Complex64>[ -1.0, 3.0 ]
*/
declare function cceilf( z: Complex64 ): Complex64;

Expand Down
10 changes: 1 addition & 9 deletions lib/node_modules/@stdlib/math/base/special/cceilf/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,10 @@
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var real = require( '@stdlib/complex/float32/real' );
* var imag = require( '@stdlib/complex/float32/imag' );
* var cceilf = require( '@stdlib/math/base/special/cceilf' );
*
* var v = cceilf( new Complex64( -1.5, 2.5 ) );
* // returns <Complex64>
*
* var re = real( v );
* // returns -1.0
*
* var im = imag( v );
* // returns 3.0
* // returns <Complex64>[ -1.0, 3.0 ]
*/

// MODULES //
Expand Down
10 changes: 1 addition & 9 deletions lib/node_modules/@stdlib/math/base/special/cceilf/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,9 @@ var imagf = require( '@stdlib/complex/float32/imag' );
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var realf = require( '@stdlib/complex/float32/real' );
* var imagf = require( '@stdlib/complex/float32/imag' );
*
* var v = cceilf( new Complex64( -1.5, 2.5 ) );
* // returns <Complex64>
*
* var re = realf( v );
* // returns -1.0
*
* var im = imagf( v );
* // returns 3.0
* // returns <Complex64>[ -1.0, 3.0 ]
*/
function cceilf( z ) {
return new Complex64( ceilf( realf( z ) ), ceilf( imagf( z ) ) );
Expand Down
10 changes: 1 addition & 9 deletions lib/node_modules/@stdlib/math/base/special/cceilf/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,9 @@ var addon = require( './../src/addon.node' );
*
* @example
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
* var realf = require( '@stdlib/complex/float32/real' );
* var imagf = require( '@stdlib/complex/float32/imag' );
*
* var v = cceilf( new Complex64( -1.5, 2.5 ) );
* // returns <Complex64>
*
* var re = realf( v );
* // returns -1.0
*
* var im = imagf( v );
* // returns 3.0
* // returns <Complex64>[ -1.0, 3.0 ]
*/
function cceilf( z ) {
var v = addon( z );
Expand Down