Handbook
Glossary
n*M ( n A -- n*A )
Basic Linear Algebra Subroutines (BLAS) interface
ยป
BLAS interface matrix operations
Prev:
n*M! ( n A -- A=n*A )
Next:
M*n ( A n -- A*n )
Vocabulary
math
.
blas
.
matrices
Inputs
n
a
number
A
a
blas-matrix-base
Outputs
n*A
a
blas-matrix-base
Word description
Calculate the scalar-matrix product
nA
and return a freshly allocated matrix with the same dimensions as
A
containing the result.
See also
n*M!
,
M*n
,
M/n
Definition
USING:
kernel
;
IN:
math.blas.matrices
:
n*M
( n A -- n*A )
clone
n*M!
;
inline