-
-## Usage
-
-```javascript
-var complex = require( '@stdlib/complex/float32' );
-```
-
-#### complex
-
-Namespace containing single-precision complex floating-point number functions.
-
-```javascript
-var ns = complex;
-// returns {...}
-```
-
-The namespace contains the following sub-namespaces:
-
-
-
-
-
-- [`base`][@stdlib/complex/float32/base]: base (i.e., lower-level) single-precision complex floating-point number functions.
-
-
-
-
-
-The namespace contains the following functions:
-
-
-
-
-
-- [`conj( z )`][@stdlib/complex/float32/conj]: return the complex conjugate of a single-precision complex floating-point number.
-- [`Complex64( real, imag )`][@stdlib/complex/float32/ctor]: 64-bit complex number.
-- [`imag( z )`][@stdlib/complex/float32/imag]: return the imaginary component of a single-precision complex floating-point number.
-- [`parseComplex64( str )`][@stdlib/complex/float32/parse]: parse a string representation of a 64-bit complex number.
-- [`real( z )`][@stdlib/complex/float32/real]: return the real component of a single-precision complex floating-point number.
-- [`reim( z )`][@stdlib/complex/float32/reim]: return the real and imaginary components of a single-precision complex floating-point number.
-- [`reviveComplex64( key, value )`][@stdlib/complex/float32/reviver]: revive a JSON-serialized 64-bit complex number.
-
-
-
-
-
-
-
-
-
-
-
-
-
-## Usage
-
-```javascript
-var complex = require( '@stdlib/complex/float32/base' );
-```
-
-#### complex
-
-Namespace containing base (i.e., lower-level) single-precision complex floating-point number functions.
-
-```javascript
-var ns = complex;
-// returns {...}
-```
-
-The namespace contains the following sub-namespaces:
-
-
-
-
-
-- [`assert`][@stdlib/complex/float32/base/assert]: base (i.e., lower-level) single-precision complex floating-point number assertion functions.
-
-
-
-
-
-The namespace contains the following functions:
-
-
-
-
-
-- [`add( z1, z2 )`][@stdlib/complex/float32/base/add]: add two single-precision complex floating-point numbers.
-- [`add3( z1, z2, z3 )`][@stdlib/complex/float32/base/add3]: compute the sum of three single-precision complex floating-point numbers.
-- [`div( z1, z2 )`][@stdlib/complex/float32/base/div]: divide two single-precision complex floating-point numbers.
-- [`identity( z )`][@stdlib/complex/float32/base/identity]: evaluate the identity function of a single-precision complex floating-point number.
-- [`muladd( alpha, x, y )`][@stdlib/complex/float32/base/mul-add]: perform a multiply-add operation involving three single-precision complex floating-point numbers.
-- [`mul( z1, z2 )`][@stdlib/complex/float32/base/mul]: multiply two single-precision complex floating-point numbers.
-- [`neg( z )`][@stdlib/complex/float32/base/neg]: negate a single-precision complex floating-point number.
-- [`scale( alpha, c )`][@stdlib/complex/float32/base/scale]: scale a single-precision complex floating-point number by a real-valued single-precision floating-point scalar constant.
-- [`sub( z1, z2 )`][@stdlib/complex/float32/base/sub]: subtract two single-precision complex floating-point numbers.
-
-
-
-
-
-
-
-
-
-
-
-