diff --git a/lib/node_modules/@stdlib/blas/base/dger/README.md b/lib/node_modules/@stdlib/blas/base/dger/README.md index 720c3fa5f573..6ed5d80c5b58 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/README.md +++ b/lib/node_modules/@stdlib/blas/base/dger/README.md @@ -172,7 +172,7 @@ dger( 'row-major', M, N, 1.0, x, 1, y, 1, A, N ); console.log( A ); dger.ndarray( M, N, 1.0, x, 1, 0, y, 1, 0, A, 1, M, 0 ); -console.log(A); +console.log( A ); ``` diff --git a/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.js b/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.js index 9a6d9d88635f..4d143ea0fc9f 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.js +++ b/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.js @@ -36,7 +36,6 @@ var cxpyn = require( './fixtures/column_major_xpyn.json' ); var cxnyn = require( './fixtures/column_major_xnyn.json' ); var cx0 = require( './fixtures/column_major_x_zeros.json' ); var cy0 = require( './fixtures/column_major_y_zeros.json' ); - var rm = require( './fixtures/row_major.json' ); var rxpyp = require( './fixtures/row_major_xpyp.json' ); var rxnyp = require( './fixtures/row_major_xnyp.json' ); @@ -208,7 +207,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', func } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { var expected; var data; var out; @@ -230,7 +229,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', functi t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.native.js b/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.native.js index 239d64c91413..e2d90917861a 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.native.js +++ b/lib/node_modules/@stdlib/blas/base/dger/test/test.dger.native.js @@ -45,7 +45,6 @@ var cxpyn = require( './fixtures/column_major_xpyn.json' ); var cxnyn = require( './fixtures/column_major_xnyn.json' ); var cx0 = require( './fixtures/column_major_x_zeros.json' ); var cy0 = require( './fixtures/column_major_y_zeros.json' ); - var rm = require( './fixtures/row_major.json' ); var rxpyp = require( './fixtures/row_major_xpyp.json' ); var rxnyp = require( './fixtures/row_major_xnyp.json' ); @@ -217,7 +216,7 @@ tape( 'the function throws an error if provided an invalid tenth argument', opts } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { var expected; var data; var out; @@ -239,7 +238,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.js index 744fca0da1de..614bfdcf15ec 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.js @@ -44,7 +44,6 @@ var csa1nsa2n = require( './fixtures/column_major_sa1n_sa2n.json' ); var ccap = require( './fixtures/column_major_complex_access_pattern.json' ); var cx0 = require( './fixtures/column_major_x_zeros.json' ); var cy0 = require( './fixtures/column_major_y_zeros.json' ); - var rm = require( './fixtures/row_major.json' ); var roa = require( './fixtures/row_major_oa.json' ); var rox = require( './fixtures/row_major_ox.json' ); @@ -171,7 +170,7 @@ tape( 'the function throws an error if provided an invalid eighth argument', fun } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', function test( t ) { var expected; var data; var out; @@ -193,7 +192,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', functi t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', function test( t ) { var expected; var data; var out; diff --git a/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.native.js b/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.native.js index d9720c66bca7..7bc2464fc6f8 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.native.js +++ b/lib/node_modules/@stdlib/blas/base/dger/test/test.ndarray.native.js @@ -53,7 +53,6 @@ var csa1nsa2n = require( './fixtures/column_major_sa1n_sa2n.json' ); var ccap = require( './fixtures/column_major_complex_access_pattern.json' ); var cx0 = require( './fixtures/column_major_x_zeros.json' ); var cy0 = require( './fixtures/column_major_y_zeros.json' ); - var rm = require( './fixtures/row_major.json' ); var roa = require( './fixtures/row_major_oa.json' ); var rox = require( './fixtures/row_major_ox.json' ); @@ -180,7 +179,7 @@ tape( 'the function throws an error if provided an invalid eighth argument', opt } }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, function test( t ) { var expected; var data; var out; @@ -202,7 +201,7 @@ tape( 'the function the rank 1 operation `A = α*x*y^T + A` (row-major)', opts, t.end(); }); -tape( 'the function the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { +tape( 'the function performs the rank 1 operation `A = α*x*y^T + A` (column-major)', opts, function test( t ) { var expected; var data; var out;