Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 1x 1x 1x 1x 1x | /**
* @license Apache-2.0
*
* Copyright (c) 2026 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// MODULES //
var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
var getStride = require( '@stdlib/ndarray/base/stride' );
var getOffset = require( '@stdlib/ndarray/base/offset' );
var getData = require( '@stdlib/ndarray/base/data-buffer' );
var strided = require( '@stdlib/blas/ext/base/cdiff' ).ndarray;
// MAIN //
/**
* Calculates the k-th discrete forward difference of a one-dimensional single-precision complex floating-point ndarray.
*
* ## Notes
*
* - The function expects the following ndarrays:
*
* - a one-dimensional input ndarray.
* - a one-dimensional ndarray containing values to prepend.
* - a one-dimensional ndarray containing values to append.
* - a one-dimensional output ndarray.
* - a one-dimensional workspace ndarray.
* - a zero-dimensional ndarray specifying the number of times to recursively compute differences.
*
* @param {ArrayLikeObject<Object>} arrays - array-like object containing ndarrays
* @returns {ndarray} output ndarray
*
* @example
* var Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
*
* var x = new Complex64Vector( [ 2.0, -2.0, 4.0, -4.0 ] );
* var prepend = new Complex64Vector( [ 1.0, -1.0 ] );
* var append = new Complex64Vector( [ 7.0, -7.0 ] );
* var out = new Complex64Vector( 3 );
* var workspace = new Complex64Vector( 3 );
* var k = scalar2ndarray( 1, {
* 'dtype': 'generic'
* });
*
* var y = cdiff( [ x, prepend, append, out, workspace, k ] );
* // returns <ndarray>[ <Complex64>[ 1.0, -1.0 ], <Complex64>[ 2.0, -2.0 ], <Complex64>[ 3.0, -3.0 ] ]
*/
function cdiff( arrays ) {
var workspace;
var prepend;
var append;
var out;
var wo;
var ws;
var wd;
var po;
var ps;
var pd;
var oo;
var os;
var od;
var ao;
var as;
var ad;
var N2;
var N1;
var xo;
var xs;
var xd;
var N;
var x;
var k;
x = arrays[ 0 ];
prepend = arrays[ 1 ];
append = arrays[ 2 ];
out = arrays[ 3 ];
workspace = arrays[ 4 ];
k = ndarraylike2scalar( arrays[ 5 ] );
// Resolve number of indexed elements...
N = numelDimension( x, 0 );
N1 = numelDimension( prepend, 0 );
N2 = numelDimension( append, 0 );
// Resolve the array data...
xd = getData( x );
pd = getData( prepend );
ad = getData( append );
od = getData( out );
wd = getData( workspace );
// Resolve the array strides...
xs = getStride( x, 0 );
ps = getStride( prepend, 0 );
as = getStride( append, 0 );
os = getStride( out, 0 );
ws = getStride( workspace, 0 );
// Resolve the array offsets...
xo = getOffset( x );
po = getOffset( prepend );
ao = getOffset( append );
oo = getOffset( out );
wo = getOffset( workspace );
strided( N, k, xd, xs, xo, N1, pd, ps, po, N2, ad, as, ao, od, os, oo, wd, ws, wo ); // eslint-disable-line max-len
return out;
}
// EXPORTS //
module.exports = cdiff;
|