sig
external dotu :
Vector_complex.vector -> Vector_complex.vector -> Gsl_complex.complex
= "ml_gsl_blas_zdotu"
external dotc :
Vector_complex.vector -> Vector_complex.vector -> Gsl_complex.complex
= "ml_gsl_blas_zdotc"
external nrm2 : Vector_complex.vector -> float = "ml_gsl_blas_znrm2"
external asum : Vector_complex.vector -> float = "ml_gsl_blas_zasum"
external iamax : Vector_complex.vector -> int = "ml_gsl_blas_izamax"
external swap : Vector_complex.vector -> Vector_complex.vector -> unit
= "ml_gsl_blas_zswap"
external copy : Vector_complex.vector -> Vector_complex.vector -> unit
= "ml_gsl_blas_zcopy"
external axpy :
Gsl_complex.complex ->
Vector_complex.vector -> Vector_complex.vector -> unit
= "ml_gsl_blas_zaxpy"
external scal : Gsl_complex.complex -> Vector_complex.vector -> unit
= "ml_gsl_blas_zscal"
external zdscal : float -> Vector_complex.vector -> unit
= "ml_gsl_blas_zdscal"
external gemv :
Blas.transpose ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
x:Vector_complex.vector ->
beta:Gsl_complex.complex -> y:Vector_complex.vector -> unit
= "ml_gsl_blas_zgemv_bc" "ml_gsl_blas_zgemv"
external trmv :
Blas.uplo ->
Blas.transpose ->
Blas.diag -> a:Matrix_complex.matrix -> x:Vector_complex.vector -> unit
= "ml_gsl_blas_ztrmv"
external trsv :
Blas.uplo ->
Blas.transpose ->
Blas.diag -> a:Matrix_complex.matrix -> x:Vector_complex.vector -> unit
= "ml_gsl_blas_ztrsv"
external hemv :
Blas.uplo ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
x:Vector_complex.vector ->
beta:Gsl_complex.complex -> y:Vector_complex.vector -> unit
= "ml_gsl_blas_zhemv_bc" "ml_gsl_blas_zhemv"
external geru :
alpha:Gsl_complex.complex ->
x:Vector_complex.vector ->
y:Vector_complex.vector -> a:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zgeru"
external gerc :
alpha:Gsl_complex.complex ->
x:Vector_complex.vector ->
y:Vector_complex.vector -> a:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zgerc"
external her :
Blas.uplo ->
alpha:float -> x:Vector_complex.vector -> a:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zher"
external her2 :
Blas.uplo ->
alpha:Gsl_complex.complex ->
x:Vector_complex.vector ->
y:Vector_complex.vector -> a:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zher2"
external gemm :
ta:Blas.transpose ->
tb:Blas.transpose ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
b:Matrix_complex.matrix ->
beta:Gsl_complex.complex -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zgemm_bc" "ml_gsl_blas_zgemm"
external symm :
Blas.side ->
Blas.uplo ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
b:Matrix_complex.matrix ->
beta:Gsl_complex.complex -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zsymm_bc" "ml_gsl_blas_zsymm"
external syrk :
Blas.uplo ->
Blas.transpose ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
beta:Gsl_complex.complex -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zsyrk_bc" "ml_gsl_blas_zsyrk"
external syr2k :
Blas.uplo ->
Blas.transpose ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
b:Matrix_complex.matrix ->
beta:Gsl_complex.complex -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zsyr2k_bc" "ml_gsl_blas_zsyr2k"
external trmm :
Blas.side ->
Blas.uplo ->
Blas.transpose ->
Blas.diag ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix -> b:Matrix_complex.matrix -> unit
= "ml_gsl_blas_ztrmm_bc" "ml_gsl_blas_ztrmm"
external trsm :
Blas.side ->
Blas.uplo ->
Blas.transpose ->
Blas.diag ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix -> b:Matrix_complex.matrix -> unit
= "ml_gsl_blas_ztrsm_bc" "ml_gsl_blas_ztrsm"
external hemm :
Blas.side ->
Blas.uplo ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
b:Matrix_complex.matrix ->
beta:Gsl_complex.complex -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zhemm_bc" "ml_gsl_blas_zhemm"
external herk :
Blas.uplo ->
Blas.transpose ->
alpha:float ->
a:Matrix_complex.matrix -> beta:float -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zherk_bc" "ml_gsl_blas_zherk"
external her2k :
Blas.uplo ->
Blas.transpose ->
alpha:Gsl_complex.complex ->
a:Matrix_complex.matrix ->
b:Matrix_complex.matrix -> beta:float -> c:Matrix_complex.matrix -> unit
= "ml_gsl_blas_zher2k_bc" "ml_gsl_blas_zher2k"
end