Module Gsl_blas_flat


module Gsl_blas_flat: sig .. end

type order = Gsl_blas.order = 
| RowMajor
| ColMajor
type transpose = Gsl_blas.transpose = 
| NoTrans
| Trans
| ConjTrans
type uplo = Gsl_blas.uplo = 
| Upper
| Lower
type diag = Gsl_blas.diag = 
| NonUnit
| Unit
type side = Gsl_blas.side = 
| Left
| Right
val dot : Gsl_vector_flat.vector -> Gsl_vector_flat.vector -> float
val nrm2 : Gsl_vector_flat.vector -> float
val asum : Gsl_vector_flat.vector -> float
val iamax : Gsl_vector_flat.vector -> int
val swap : Gsl_vector_flat.vector -> Gsl_vector_flat.vector -> unit
val copy : Gsl_vector_flat.vector -> Gsl_vector_flat.vector -> unit
val axpy : float -> Gsl_vector_flat.vector -> Gsl_vector_flat.vector -> unit
val rot : Gsl_vector_flat.vector -> Gsl_vector_flat.vector -> float -> float -> unit
val scal : float -> Gsl_vector_flat.vector -> unit
val gemv : transpose ->
alpha:float ->
a:Gsl_matrix_flat.matrix ->
x:Gsl_vector_flat.vector -> beta:float -> y:Gsl_vector_flat.vector -> unit
val trmv : uplo ->
transpose ->
diag ->
a:Gsl_matrix_flat.matrix -> x:Gsl_vector_flat.vector -> unit
val trsv : uplo ->
transpose ->
diag ->
a:Gsl_matrix_flat.matrix -> x:Gsl_vector_flat.vector -> unit
val symv : uplo ->
alpha:float ->
a:Gsl_matrix_flat.matrix ->
x:Gsl_vector_flat.vector -> beta:float -> y:Gsl_vector_flat.vector -> unit
val dger : alpha:float ->
x:Gsl_vector_flat.vector ->
y:Gsl_vector_flat.vector -> a:Gsl_matrix_flat.matrix -> unit
val syr : uplo ->
alpha:float -> x:Gsl_vector_flat.vector -> a:Gsl_matrix_flat.matrix -> unit
val syr2 : uplo ->
alpha:float ->
x:Gsl_vector_flat.vector ->
y:Gsl_vector_flat.vector -> a:Gsl_matrix_flat.matrix -> unit
val gemm : ta:transpose ->
tb:transpose ->
alpha:float ->
a:Gsl_matrix_flat.matrix ->
b:Gsl_matrix_flat.matrix -> beta:float -> c:Gsl_matrix_flat.matrix -> unit
val symm : side ->
uplo ->
alpha:float ->
a:Gsl_matrix_flat.matrix ->
b:Gsl_matrix_flat.matrix -> beta:float -> c:Gsl_matrix_flat.matrix -> unit
val trmm : side ->
uplo ->
transpose ->
diag ->
alpha:float -> a:Gsl_matrix_flat.matrix -> b:Gsl_matrix_flat.matrix -> unit
val trsm : side ->
uplo ->
transpose ->
diag ->
alpha:float -> a:Gsl_matrix_flat.matrix -> b:Gsl_matrix_flat.matrix -> unit
val syrk : uplo ->
transpose ->
alpha:float ->
a:Gsl_matrix_flat.matrix -> beta:float -> c:Gsl_matrix_flat.matrix -> unit
val syr2k : uplo ->
transpose ->
alpha:float ->
a:Gsl_matrix_flat.matrix ->
b:Gsl_matrix_flat.matrix -> beta:float -> c:Gsl_matrix_flat.matrix -> unit
module Complex: sig .. end