Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "complex/imagf/docs/types/index.d"

Index

Functions

Functions

Export assignment imagf

  • Returns the imaginary component of a single-precision complex floating-point number.

    Parameters

    Returns number

    imaginary component

    Example

    var Complex64 = require( `@stdlib/complex/float32` );
    
    var z = new Complex64( 5.0, 3.0 );
    
    var im = imagf( z );
    // returns 3.0