File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/blas/base/ndarray/zcopy/docs Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 floating-point ndarray `x` into a one-dimensional double-precision
55 complex floating-point ndarray `y`.
66
7- If provided an empty input ndarray, the function returns the output
8- ndarray unchanged.
7+ If provided an empty input ndarray, the function returns the output ndarray
8+ unchanged.
99
1010 Parameters
1111 ----------
1212 arrays: ArrayLikeObject<ndarray>
13- Array-like object containing an input ndarray and an output
14- ndarray.
13+ Array-like object containing an input ndarray and an output ndarray.
1514
1615 Returns
1716 -------
2019
2120 Examples
2221 --------
23- > var xbuf = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0 ] );
24- > var ybuf = new {{alias:@stdlib/array/complex128}}( [ 0.0, 0.0 ] );
22+ > var xbuf = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0, 3.0, 4.0 ] );
23+ > var ybuf = new {{alias:@stdlib/array/complex128}}( [ 0.0, 0.0, 0.0, 0.0 ] );
2524 > var dt = 'complex128';
2625 > var sh = [ xbuf.length ];
2726 > var st = [ 1 ];
3231
3332 > {{alias}}( [ x, y ] );
3433 > y
35- <ndarray>[ <Complex128>[ 1.0, 2.0 ] ]
34+ <ndarray>[ <Complex128>[ 1.0, 2.0 ], <Complex128>[ 3.0, 4.0 ] ]
3635
3736 See Also
3837 --------
You can’t perform that action at this time.
0 commit comments