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

43 lines
967 B
Plaintext

{{alias}}( value )
Tests if a value is a 1-dimensional ndarray-like object containing double-
precision floating-point numbers.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether a value is a 1-dimensional ndarray-like
object containing double-precision floating-point numbers.
Examples
--------
> var M = {};
> M.data = new {{alias:@stdlib/array/float64}}( [ 0, 0, 0, 0 ] );
> M.ndims = 1;
> M.shape = [ 4 ];
> M.strides = [ 1 ];
> M.offset = 0;
> M.order = 'row-major';
> M.dtype = 'float64';
> M.length = 4;
> M.flags = {};
> M.get = function get( i, j ) {};
> M.set = function set( i, j ) {};
> var bool = {{alias}}( M )
true
> bool = {{alias}}( [ 1, 2, 3, 4 ] )
false
> bool = {{alias}}( 3.14 )
false
> bool = {{alias}}( {} )
false
See Also
--------