Skip to content

Latest commit

 

History

History
121 lines (75 loc) · 3.13 KB

File metadata and controls

121 lines (75 loc) · 3.13 KB

ccopy

Copy values from a one-dimensional single-precision complex floating-point ndarray x into a one-dimensional single-precision complex floating-point ndarray y.

Usage

var ccopy = require( '@stdlib/blas/base/ndarray/ccopy' );

ccopy( arrays )

Copies values from a one-dimensional single-precision complex floating-point ndarray x into a one-dimensional single-precision complex floating-point ndarray y.

var Complex64Array = require( '@stdlib/array/complex64' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );

var xbuf = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
var x = new ndarray( 'complex64', xbuf, [ 3 ], [ 1 ], 0, 'row-major' );

var ybuf = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
var y = new ndarray( 'complex64', ybuf, [ 3 ], [ 1 ], 0, 'row-major' );

var z = ccopy( [ x, y ] );
// returns <ndarray>[ <Complex64>[ 1.0, 2.0 ], <Complex64>[ 3.0, 4.0 ], <Complex64>[ 5.0, 6.0 ] ]

var bool = ( y === z );
// returns true

The function has the following parameters:

  • arrays: array-like object containing an input ndarray and an output ndarray.

Examples

var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
var Complex64Array = require( '@stdlib/array/complex64' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var ccopy = require( '@stdlib/blas/base/ndarray/ccopy' );

var opts = {
    'dtype': 'float32'
};

var xbuf = new Complex64Array( discreteUniform( 10, 0, 100, opts ) );
var x = new ndarray( 'complex64', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
console.log( ndarray2array( x ) );

var ybuf = new Complex64Array( discreteUniform( xbuf.length*2, 0, 10, opts ) );
var y = new ndarray( 'complex64', ybuf, [ ybuf.length ], [ 1 ], 0, 'row-major' );
console.log( ndarray2array( y ) );

var out = ccopy( [ x, y ] );
console.log( ndarray2array( out ) );