diff --git a/lib/node_modules/@stdlib/blas/base/dgemv/lib/ndarray.js b/lib/node_modules/@stdlib/blas/base/dgemv/lib/ndarray.js index 4e25ea9d2f01..a7e65c564f63 100644 --- a/lib/node_modules/@stdlib/blas/base/dgemv/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dgemv/lib/ndarray.js @@ -73,10 +73,10 @@ function dgemv( trans, M, N, alpha, A, strideA1, strideA2, offsetA, x, strideX, throw new RangeError( format( 'invalid argument. Third argument must be a nonnegative integer. Value: `%d`.', N ) ); } if ( strideX === 0 ) { - throw new RangeError( format( 'invalid argument. Tenth argument must be non-zero.' ) ); + throw new RangeError( format( 'invalid argument. Tenth argument must be non-zero. Value: `%d`.', strideX ) ); } if ( strideY === 0 ) { - throw new RangeError( format( 'invalid argument. Fourteenth argument must be non-zero.' ) ); + throw new RangeError( format( 'invalid argument. Fourteenth argument must be non-zero. Value: `%d`.', strideY ) ); } // Check if we can early return... if ( M === 0 || N === 0 || ( alpha === 0.0 && beta === 1.0 ) ) {