time-to-botec/squiggle/node_modules/@stdlib/assert/is-skew-symmetric-matrix/docs/repl.txt

33 lines
669 B
Plaintext
Raw Normal View History

{{alias}}( value )
Tests if a value is a skew-symmetric (or antisymmetric) matrix.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether a value is a skew-symmetric matrix.
Examples
--------
> var buf = [ 0, -1, 1, 0 ];
> var sh = [ 2, 2 ];
> var st = [ 2, 1 ];
> var M = {{alias:@stdlib/ndarray/ctor}}( 'generic', buf, sh, st, 0, 'row-major' );
> var bool = {{alias}}( M )
true
> bool = {{alias}}( [ 1, 2, 3, 4 ] )
false
> bool = {{alias}}( 3.14 )
false
> bool = {{alias}}( {} )
false
See Also
--------