time-to-botec/js/node_modules/@stdlib/blas/sswap/docs/repl.txt

31 lines
794 B
Plaintext
Raw Permalink Normal View History

{{alias}}( x, y )
Interchanges two single-precision floating-point vectors.
Parameters
----------
x: ndarray
First input array whose underlying data type is 'float32'.
y: ndarray
Second input array whose underlying data type is 'float32'.
Returns
-------
y: ndarray
The second input array `y`.
Examples
--------
> var x = {{alias:@stdlib/ndarray/array}}( new {{alias:@stdlib/array/float32}}( [ 4.0, 2.0, -3.0, 5.0, -1.0 ] ) );
> var y = {{alias:@stdlib/ndarray/array}}( new {{alias:@stdlib/array/float32}}( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] ) );
> {{alias}}( x, y );
> x.data
<Float32Array>[ 2.0, 6.0, -1.0, -4.0, 8.0 ]
> y.data
<Float32Array>[ 4.0, 2.0, -3.0, 5.0, -1.0 ]
See Also
--------