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.
MatrixOrientation
1 parent e01e9d8 commit 59de9afCopy full SHA for 59de9af
lib/node_modules/@stdlib/types/index.d.ts
@@ -1339,6 +1339,16 @@ declare module '@stdlib/types/blas' {
1339
*/
1340
type Layout = 'row-major' | 'column-major';
1341
1342
+ /**
1343
+ * Matrix orientation.
1344
+ *
1345
+ * ## Notes
1346
1347
+ * - **rows**: data is stored along matrix rows.
1348
+ * - **columns**: data is stored along matrix columns.
1349
+ */
1350
+ type MatrixOrientation = 'rows' | 'columns';
1351
+
1352
/**
1353
* Matrix triangle.
1354
*
0 commit comments