diff --git a/lib/node_modules/@stdlib/assert/docs/types/index.d.ts b/lib/node_modules/@stdlib/assert/docs/types/index.d.ts index daaa73cc5cdb..4ca2b6f77316 100644 --- a/lib/node_modules/@stdlib/assert/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/assert/docs/types/index.d.ts @@ -2755,10 +2755,11 @@ interface Namespace { * @returns boolean indicating if a value is a 2-dimensional ndarray-like object whose underlying data type is `complex128` * * @example - * var Complex128Array = require( '@stdlib/array/complex128' ); - * var ndarray = require( '@stdlib/ndarray/ctor' ); + * var zeros = require( '@stdlib/ndarray/zeros' ); * - * var arr = ndarray( 'complex128', new Complex128Array( [ 0, 0, 0, 0, 0, 0, 0, 0 ] ), [ 2, 2 ], [ 2, 1 ], 0, 'row-major' ); + * var arr = zeros( [ 2, 2 ], { + * 'dtype': 'complex128' + * }); * * var bool = ns.isComplex128MatrixLike( arr ); * // returns true @@ -2775,10 +2776,11 @@ interface Namespace { * @returns boolean indicating if a value is an ndarray-like object whose underlying data type is `complex128` * * @example - * var Complex128Array = require( '@stdlib/array/complex128' ); - * var ndarray = require( '@stdlib/ndarray/ctor' ); + * var zeros = require( '@stdlib/ndarray/zeros' ); * - * var arr = ndarray( 'complex128', new Complex128Array( [ 0, 0, 0, 0, 0, 0, 0, 0 ] ), [ 2, 2 ], [ 2, 1 ], 0, 'row-major' ); + * var arr = zeros( [ 2, 2 ], { + * 'dtype': 'complex128' + * }); * * var bool = ns.isComplex128ndarrayLike( arr ); * // returns true @@ -2795,10 +2797,11 @@ interface Namespace { * @returns boolean indicating if a value is a 1-dimensional ndarray-like object whose underlying data type is `complex128` * * @example - * var Complex128Array = require( '@stdlib/array/complex128' ); - * var ndarray = require( '@stdlib/ndarray/ctor' ); + * var zeros = require( '@stdlib/ndarray/zeros' ); * - * var arr = ndarray( 'complex128', new Complex128Array( [ 0, 0, 0, 0, 0, 0, 0, 0 ] ), [ 4 ], [ 1 ], 0, 'row-major' ); + * var arr = zeros( [ 4 ], { + * 'dtype': 'complex128' + * }); * * var bool = ns.isComplex128VectorLike( arr ); * // returns true