time-to-botec/js/node_modules/@stdlib/assert/is-float64matrix-like
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

isFloat64MatrixLike

Test if a value is a 2-dimensional ndarray-like object containing double-precision floating-point numbers.

Usage

var isFloat64MatrixLike = require( '@stdlib/assert/is-float64matrix-like' );

isFloat64MatrixLike( value )

Tests if a value is a 2-dimensional ndarray-like object whose underlying data type is float64.

var Float64Array = require( '@stdlib/array/float64' );
var ndarray = require( '@stdlib/ndarray/ctor' );

var arr = ndarray( 'float64', new Float64Array( [ 0, 0, 0, 0 ] ), [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );

var bool = isFloat64MatrixLike( arr );
// returns true

Examples

var ndarray = require( '@stdlib/ndarray/ctor' );
var Float64Array = require( '@stdlib/array/float64' );
var isFloat64MatrixLike = require( '@stdlib/assert/is-float64matrix-like' );

var buffer = new Float64Array( [ 0, 0, 0, 0 ] );
var arr = ndarray( 'float64', buffer, [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );

var out = isFloat64MatrixLike( arr );
// returns true

out = isFloat64MatrixLike( [ 1, 2, 3, 4 ] );
// returns false

out = isFloat64MatrixLike( {} );
// returns false

out = isFloat64MatrixLike( null );
// returns false