You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applies a real block reflector `H` or its transpose `H ^ T` to a real `M` by `N` matrix `C`, from either the left or the right, using alternative indexing semantics.
76
+
Applies a real block reflector `H` or its transpose `H^T` to a real `M` by `N` matrix `C`, from either the left or the right, using alternative indexing semantics.
* Applies a real block reflector `H` or its transpose `H ^ T` to a real `M` by `N` matrix `C`, from either the left or the right.
84
+
* Applies a real block reflector `H` or its transpose `H^T` to a real `M` by `N` matrix `C`, from either the left or the right.
85
85
*
86
86
* ## Notes
87
87
*
@@ -90,8 +90,8 @@ interface Routine {
90
90
* - `C` is a double-precision array with dimension `(LDC,N)`. On entry, the `M` by `N` matrix `C`. On exit, `C` is overwritten by the desired matrix product.
91
91
* - `work` is a double-precision array with dimension `(LDWORK,K)`.
92
92
*
93
-
* @param side - specifies whether `H` or `H ^ T` is applied from the left or right
94
-
* @param trans - specifies whether to apply `H` or `H ^ T`
93
+
* @param side - specifies whether `H` or `H^T` is applied from the left or right
94
+
* @param trans - specifies whether to apply `H` or `H^T`
95
95
* @param direct - indicates how `H` is formed from a product of elementary reflectors
96
96
* @param storev - indicates how the vectors which define the elementary reflectors are stored
97
97
* @param M - number of rows of the matrix `C`
@@ -131,7 +131,7 @@ interface Routine {
131
131
}
132
132
133
133
/**
134
-
* Applies a real block reflector `H` or its transpose `H ^ T` to a real `M` by `N` matrix `C`, from either the left or the right.
134
+
* Applies a real block reflector `H` or its transpose `H^T` to a real `M` by `N` matrix `C`, from either the left or the right.
135
135
*
136
136
* ## Notes
137
137
*
@@ -141,8 +141,8 @@ interface Routine {
141
141
* - `work` is a double-precision array with dimension `(LDWORK,K)`.
142
142
*
143
143
* @param order - storage layout
144
-
* @param side - specifies whether `H` or `H ^ T` is applied from the left or right
145
-
* @param trans - specifies whether to apply `H` or `H ^ T`
144
+
* @param side - specifies whether `H` or `H^T` is applied from the left or right
145
+
* @param trans - specifies whether to apply `H` or `H^T`
146
146
* @param direct - indicates how `H` is formed from a product of elementary reflectors
147
147
* @param storev - indicates how the vectors which define the elementary reflectors are stored
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/lapack/base/dlarfb/lib/ndarray.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ var base = require( './base.js' );
30
30
// MAIN //
31
31
32
32
/**
33
-
* Applies a real block reflector `H` or its transpose `H ^ T` to a real `M` by `N` matrix `C`, from either the left or the right.
33
+
* Applies a real block reflector `H` or its transpose `H^T` to a real `M` by `N` matrix `C`, from either the left or the right.
34
34
*
35
35
* ## Notes
36
36
*
@@ -39,8 +39,8 @@ var base = require( './base.js' );
39
39
* - `C` is a double-precision array with dimension `(LDC,N)`. On entry, the `M` by `N` matrix `C`. On exit, `C` is overwritten by the desired matrix product.
40
40
* - `work` is a double-precision array with dimension `(LDWORK,K)`.
41
41
*
42
-
* @param {string} side - specifies whether `H` or `H ^ T` is applied from the left or right
43
-
* @param {string} trans - specifies whether to apply `H` or `H ^ T`
42
+
* @param {string} side - specifies whether `H` or `H^T` is applied from the left or right
43
+
* @param {string} trans - specifies whether to apply `H` or `H^T`
44
44
* @param {string} direct - indicates how `H` is formed from a product of elementary reflectors
45
45
* @param {string} storev - indicates how the vectors which define the elementary reflectors are stored
46
46
* @param {NonNegativeInteger} M - number of rows of the matrix `C`
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/lapack/base/dlarfb/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "@stdlib/lapack/base/dlarfb",
3
3
"version": "0.0.0",
4
-
"description": "LAPACK routine to apply a real block reflector `H` or its transpose `H ^ T` to a real `M` by `N` matrix `C`, from either the left or the right.",
4
+
"description": "LAPACK routine to apply a real block reflector `H` or its transpose `H^T` to a real `M` by `N` matrix `C`, from either the left or the right.",
0 commit comments