We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d653e8e commit 1bc78c9Copy full SHA for 1bc78c9
1 file changed
lib/node_modules/@stdlib/ndarray/base/rot180/test/test.js
@@ -249,6 +249,7 @@ tape( 'the function rotates a matrix 180 degrees in a specified plane (dtype=com
249
x = new base( 'complex128', buf, [ 2, 2 ], [ 2, 1 ], 0, 'row-major' );
250
251
// Original matrix: [ [ 1+1i, 2+2i ], [ 3+3i, 4+4i ] ].
252
+
253
// After 180 rotation: [ [ 4+4i, 3+3i ], [ 2+2i, 1+1i ] ]
254
255
arr = rot180( x, [ 0, 1 ], false );
0 commit comments