Handbook
Glossary
Mcols ( A -- cols )
Basic Linear Algebra Subroutines (BLAS) interface
ยป
BLAS interface matrix operations
Prev:
Mrows ( A -- rows )
Next:
Msub ( matrix row col height width -- sub )
Vocabulary
math
.
blas
.
matrices
Inputs
A
a
blas-matrix-base
Outputs
cols
a
sequence
Word description
Return a sequence of BLAS vectors representing the columns of
matrix
. Each vector will share the parent matrix's storage.
Definition
USING:
accessors
kernel
;
IN:
math.blas.matrices
:
Mcols
( A -- cols )
dup
transpose>>
[
(Mrows)
]
[
(Mcols)
]
if
;