Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "math/base/special/cceil/docs/types/index.d"

Index

Functions

Functions

Export assignment cceil

  • Rounds each component of a double-precision complex floating-point number toward positive infinity.

    Parameters

    Returns Complex128

    result

    Example

    var Complex128 = require( '@stdlib/complex/float64/ctor' );
    var real = require( '@stdlib/complex/float64/real' );
    var imag = require( '@stdlib/complex/float64/imag' );
    
    var v = cceil( new Complex128( -1.5, 2.5 ) );
    // returns <Complex128>
    
    var re = real( v );
    // returns -1.0
    
    var im = imag( v );
    // returns 3.0