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

1.8 KiB

isPersymmetricMatrix

Test if a value is a persymmetric matrix.

Usage

var isPersymmetricMatrix = require( '@stdlib/assert/is-persymmetric-matrix' );

isPersymmetricMatrix( value )

Tests if a value is a persymmetric matrix.

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

var arr = ndarray( 'generic', [ 1, 2, 3, 1 ], [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
var bool = isPersymmetricMatrix( arr );
// returns true

Examples

var ndarray = require( '@stdlib/ndarray/ctor' );
var isPersymmetricMatrix = require( '@stdlib/assert/is-persymmetric-matrix' );

var arr = ndarray( 'generic', [ 1, 2, 3, 1 ], [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
var out = isPersymmetricMatrix( arr );
// returns true

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

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

out = isPersymmetricMatrix( null );
// returns false