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 9f23be0 commit dc62ca4Copy full SHA for dc62ca4
lib/node_modules/@stdlib/lapack/base/slacpy/docs/types/index.d.ts
@@ -70,7 +70,7 @@ interface Routine {
70
* var Float32Array = require( '@stdlib/array/float32' );
71
*
72
* var A = new Float32Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
73
- * var B = new Float32Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
+ * var B = new Float32Array( [ 0.0, 0.0, 99.0, 99.0, 99.0, 99.0 ] );
74
75
* slacpy.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
76
* // B => <Float32Array>[ 0.0, 0.0, 1.0, 2.0, 3.0, 4.0 ]
@@ -104,7 +104,7 @@ interface Routine {
104
105
106
107
-* var B = new Float32Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
+* var B = new Float32Array( [ 0.0, 0.0, 99.0, 99.0, 99.0, 99.0 ] );
108
109
110
0 commit comments