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 {integer} strideA1 - stride of the first dimension of `A`
820
820
* @param {integer} strideA2 - stride of the second dimension of `A`
821
821
* @param {NonNegativeInteger} offsetA - starting index of `A`
822
-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
822
+
* @param {Float64Array} work - work array, should have `M` indexed elements
823
823
* @param {integer} strideWork - stride length of `work`
824
824
* @param {NonNegativeInteger} offsetWork - starting index of `work`
* @param {integer} strideA1 - stride of the first dimension of `A`
945
945
* @param {integer} strideA2 - stride of the second dimension of `A`
946
946
* @param {NonNegativeInteger} offsetA - starting index of `A`
947
-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
947
+
* @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
948
948
* @param {integer} strideWork - stride length of `work`
949
949
* @param {NonNegativeInteger} offsetWork - starting index of `work`
* @param {NonNegativeInteger} N - number of columns in `A`
298
301
* @param {Float64Array} A - input array
299
302
* @param {PositiveInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
300
-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
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
301
304
* @throws {TypeError} first argument must be a valid order
302
305
* @throws {TypeError} second argument must be a valid operation
303
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`
254
257
* @param {integer} strideA2 - stride of the second dimension of `A`
255
258
* @param {NonNegativeInteger} offsetA - starting index of `A`
256
-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
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
257
260
* @param {integer} strideWork - stride length of `work`
258
261
* @param {NonNegativeInteger} offsetWork - starting index of `work`
259
262
* @throws {TypeError} first argument must be a valid operation
0 commit comments