package gsl

  1. Overview
  2. Docs

Module Gsl.Blas_flatSource

Sourcetype order = Blas.order =
  1. | RowMajor
  2. | ColMajor
Sourcetype transpose = Blas.transpose =
  1. | NoTrans
  2. | Trans
  3. | ConjTrans
Sourcetype uplo = Blas.uplo =
  1. | Upper
  2. | Lower
Sourcetype diag = Blas.diag =
  1. | NonUnit
  2. | Unit
Sourcetype side = Blas.side =
  1. | Left
  2. | Right
Sourceval nrm2 : Vector_flat.vector -> float
Sourceval asum : Vector_flat.vector -> float
Sourceval iamax : Vector_flat.vector -> int
Sourceval axpy : float -> Vector_flat.vector -> Vector_flat.vector -> unit
Sourceval rot : Vector_flat.vector -> Vector_flat.vector -> float -> float -> unit
Sourceval scal : float -> Vector_flat.vector -> unit
Sourceval gemv : transpose -> alpha:float -> a:Matrix_flat.matrix -> x:Vector_flat.vector -> beta:float -> y:Vector_flat.vector -> unit
Sourceval symv : uplo -> alpha:float -> a:Matrix_flat.matrix -> x:Vector_flat.vector -> beta:float -> y:Vector_flat.vector -> unit
Sourceval dger : alpha:float -> x:Vector_flat.vector -> y:Vector_flat.vector -> a:Matrix_flat.matrix -> unit
Sourceval syr : uplo -> alpha:float -> x:Vector_flat.vector -> a:Matrix_flat.matrix -> unit
Sourceval syr2 : uplo -> alpha:float -> x:Vector_flat.vector -> y:Vector_flat.vector -> a:Matrix_flat.matrix -> unit
Sourceval gemm : ta:transpose -> tb:transpose -> alpha:float -> a:Matrix_flat.matrix -> b:Matrix_flat.matrix -> beta:float -> c:Matrix_flat.matrix -> unit
Sourceval symm : side -> uplo -> alpha:float -> a:Matrix_flat.matrix -> b:Matrix_flat.matrix -> beta:float -> c:Matrix_flat.matrix -> unit
Sourceval trmm : side -> uplo -> transpose -> diag -> alpha:float -> a:Matrix_flat.matrix -> b:Matrix_flat.matrix -> unit
Sourceval trsm : side -> uplo -> transpose -> diag -> alpha:float -> a:Matrix_flat.matrix -> b:Matrix_flat.matrix -> unit
Sourceval syrk : uplo -> transpose -> alpha:float -> a:Matrix_flat.matrix -> beta:float -> c:Matrix_flat.matrix -> unit
Sourceval syr2k : uplo -> transpose -> alpha:float -> a:Matrix_flat.matrix -> b:Matrix_flat.matrix -> beta:float -> c:Matrix_flat.matrix -> unit
Sourcemodule Complex : sig ... end