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
* @param {NonNegativeInteger} N - number of columns in `A`
301
301
* @param {Float64Array} A - input array
302
302
* @param {PositiveInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
303
-
* @param {Float64Array} work - only used to compute the infinity norm, should have `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
303
+
* @param {Float64Array} work - temporary workspace array
304
304
* @throws {TypeError} first argument must be a valid order
305
305
* @throws {TypeError} second argument must be a valid operation
306
306
* @throws {RangeError} sixth argument must be greater than or equal to max(1,N)
* @param {integer} strideA1 - stride of the first dimension of `A`
257
257
* @param {integer} strideA2 - stride of the second dimension of `A`
258
258
* @param {NonNegativeInteger} offsetA - starting index of `A`
259
-
* @param {Float64Array} work - only used to compute the infinity norm, should have `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
259
+
* @param {Float64Array} work - temporary workspace array
260
260
* @param {integer} strideWork - stride length of `work`
261
261
* @param {NonNegativeInteger} offsetWork - starting index of `work`
262
262
* @throws {TypeError} first argument must be a valid operation
0 commit comments