diff --git a/lib/node_modules/@stdlib/stats/strided/dpcorr/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/stats/strided/dpcorr/benchmark/c/benchmark.length.c index 78f63b2c8216..cc80e24f11b8 100644 --- a/lib/node_modules/@stdlib/stats/strided/dpcorr/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/stats/strided/dpcorr/benchmark/c/benchmark.length.c @@ -152,7 +152,7 @@ static double benchmark2( int iterations, int len ) { c = 0.0; t = tic(); for ( i = 0; i < iterations; i++ ) { - c = stdlib_strided_dpcorr_ndarray( len, x, 1, 0, x, 1, 0 ); + c = stdlib_strided_dpcorr_ndarray( len, x, 1, 0, y, 1, 0 ); if ( c != c ) { printf( "should not return NaN\n" ); break; diff --git a/lib/node_modules/@stdlib/stats/strided/dpcorr/src/main.c b/lib/node_modules/@stdlib/stats/strided/dpcorr/src/main.c index 5c27be531cbb..76307d0546cf 100644 --- a/lib/node_modules/@stdlib/stats/strided/dpcorr/src/main.c +++ b/lib/node_modules/@stdlib/stats/strided/dpcorr/src/main.c @@ -50,5 +50,5 @@ double API_SUFFIX(stdlib_strided_dpcorr)( const CBLAS_INT N, const double *X, co * @return output value */ double API_SUFFIX(stdlib_strided_dpcorr_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) { - return stdlib_strided_dpcorrwd_ndarray( N, X, strideX, offsetX, Y, strideY, offsetY ); + return API_SUFFIX(stdlib_strided_dpcorrwd_ndarray)( N, X, strideX, offsetX, Y, strideY, offsetY ); }