UNPKG
@bluemath/linalg
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
Bluemath Linear Algebra library
github.com/bluemathsoft/bm-linalg
bluemathsoft/bm-linalg
@bluemath/linalg
/
lib
/
blas
/
l1.d.ts
10 lines
(9 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
TypedArray
}
from
'@bluemath/common'
;
/** *
@hidden
*/
export
declare
function
asum
(
X
:
TypedArray
):
number
;
/** *
@hidden
*/
export
declare
function
axpy
(
X
:
TypedArray
,
a
:
number
,
Y
:
TypedArray
):
void
;