File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
lib/node_modules/@stdlib/blas/base/matrix-orientations Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -124,13 +124,13 @@ bool = isMatrixOrientation( 'beep' );
124
124
125
125
An enumeration of BLAS matrix orientations with the following fields:
126
126
127
- - ** STDLIB_BLAS_ROWS ** : data is stored along matrix rows.
128
- - ** STDLIB_BLAS_COLUMNS ** : data is stored along matrix columns.
127
+ - ** STDLIB_BLAS_ROW_MATRIX ** : data is stored along matrix rows.
128
+ - ** STDLIB_BLAS_COLUMN_MATRIX ** : data is stored along matrix columns.
129
129
130
130
``` c
131
131
#include " stdlib/blas/base/matrix_orientations.h"
132
132
133
- const enum STDLIB_BLAS_MATRIX_ORIENTATION v = STDLIB_BLAS_ROWS ;
133
+ const enum STDLIB_BLAS_MATRIX_ORIENTATION v = STDLIB_BLAS_ROW_MATRIX ;
134
134
```
135
135
136
136
</section >
Original file line number Diff line number Diff line change 24
24
*/
25
25
enum STDLIB_BLAS_MATRIX_ORIENTATION {
26
26
// Row matrix:
27
- STDLIB_BLAS_ROWS = 241 ,
27
+ STDLIB_BLAS_ROW_MATRIX = 241 ,
28
28
29
29
// Column matrix:
30
- STDLIB_BLAS_COLUMNS = 242 ,
30
+ STDLIB_BLAS_COLUMN_MATRIX = 242 ,
31
31
};
32
32
33
33
#endif // !STDLIB_BLAS_BASE_MATRIX_ORIENTATIONS_H
You can’t perform that action at this time.
0 commit comments