Handbook
Glossary
element-type ( v -- type )
Vocabulary
math
.
blas
.
vectors
Inputs
v
a
blas-vector-base
Outputs
type
a
string
Word description
Return the C type of the elements in the given BLAS vector or matrix.
Definition
IN:
math.blas.vectors
GENERIC:
element-type
( v -- type )
Methods
USING:
alien.complex
kernel
math.blas.matrices
math.blas.vectors
;
M:
complex-double-blas-matrix
element-type
drop
complex-double
;
USING:
alien.complex
kernel
math.blas.vectors
;
M:
complex-double-blas-vector
element-type
drop
complex-double
;
USING:
alien.complex
kernel
math.blas.matrices
math.blas.vectors
;
M:
complex-float-blas-matrix
element-type
drop
complex-float
;
USING:
alien.complex
kernel
math.blas.vectors
;
M:
complex-float-blas-vector
element-type
drop
complex-float
;
USING:
alien.c-types
kernel
math.blas.matrices
math.blas.vectors
;
M:
double-blas-matrix
element-type
drop
double
;
USING:
alien.c-types
kernel
math.blas.vectors
;
M:
double-blas-vector
element-type
drop
double
;
USING:
alien.c-types
kernel
math.blas.matrices
math.blas.vectors
;
M:
float-blas-matrix
element-type
drop
float
;
USING:
alien.c-types
kernel
math.blas.vectors
;
M:
float-blas-vector
element-type
drop
float
;