@stdlib/assert-is-matrix-like
v0.2.2
Published
Test if a value is a 2-dimensional ndarray-like object.
Downloads
2,343
Readme
isMatrixLike
Test if a value is 2-dimensional ndarray-like object.
Installation
npm install @stdlib/assert-is-matrix-like
Usage
var isMatrixLike = require( '@stdlib/assert-is-matrix-like' );
isMatrixLike( value )
Tests if a value is a 2-dimensional ndarray-like object.
var ndarray = require( '@stdlib/ndarray-ctor' );
var arr = ndarray( 'generic', [ 0, 0, 0, 0 ], [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
var bool = isMatrixLike( arr );
// returns true
Examples
var ndarray = require( '@stdlib/ndarray-ctor' );
var isMatrixLike = require( '@stdlib/assert-is-matrix-like' );
var arr = ndarray( 'generic', [ 0, 0, 0, 0 ], [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
var out = isMatrixLike( arr );
// returns true
out = isMatrixLike( [ 1, 2, 3, 4 ] );
// returns false
out = isMatrixLike( {} );
// returns false
out = isMatrixLike( null );
// returns false
See Also
@stdlib/assert-is-array
: test if a value is an array.@stdlib/assert-is-array-like
: test if a value is array-like.@stdlib/assert-is-ndarray-like
: test if a value is ndarray-like.@stdlib/assert-is-typed-array-like
: test if a value is typed-array-like.@stdlib/assert-is-vector-like
: test if a value is a 1-dimensional ndarray-like object.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.