You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
468
+
*
469
+
* var x = new Float32Vector( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
470
+
* var y = new Float32Vector( [ 6.0, 7.0, 8.0, 9.0, 10.0 ] );
471
+
*
472
+
* var z = ns.sswap( [ x, y ] );
473
+
* // x => <ndarray>[ 6.0, 7.0, 8.0, 9.0, 10.0 ]
474
+
* // y => <ndarray>[ 1.0, 2.0, 3.0, 4.0, 5.0 ]
475
+
*
476
+
* var bool = ( z === y );
477
+
* // returns true
478
+
*/
479
+
sswap: typeofsswap;
480
+
452
481
/**
453
482
* Multiplies a one-dimensional double-precision complex floating-point ndarray `x` by a constant `alpha` and adds the result to a one-dimensional double-precision complex floating-point ndarray `y`.
0 commit comments