gsl.blas

D bindings for GSL.

Members

Aliases

CBLAS_DIAG_t
alias CBLAS_DIAG_t = CBLAS_DIAG
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CBLAS_INDEX_t
alias CBLAS_INDEX_t = c_ulong
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CBLAS_ORDER_t
alias CBLAS_ORDER_t = CBLAS_ORDER
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CBLAS_SIDE_t
alias CBLAS_SIDE_t = CBLAS_SIDE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CBLAS_TRANSPOSE_t
alias CBLAS_TRANSPOSE_t = CBLAS_TRANSPOSE
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CBLAS_UPLO_t
alias CBLAS_UPLO_t = CBLAS_UPLO
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

gsl_blas_caxpy
int gsl_blas_caxpy(gsl_complex_float alpha, const(gsl_vector_complex_float)* X, gsl_vector_complex_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ccopy
int gsl_blas_ccopy(const(gsl_vector_complex_float)* X, gsl_vector_complex_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cdotc
int gsl_blas_cdotc(const(gsl_vector_complex_float)* X, const(gsl_vector_complex_float)* Y, gsl_complex_float* dotc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cdotu
int gsl_blas_cdotu(const(gsl_vector_complex_float)* X, const(gsl_vector_complex_float)* Y, gsl_complex_float* dotu)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cgemm
int gsl_blas_cgemm(CBLAS_TRANSPOSE_t TransA, CBLAS_TRANSPOSE_t TransB, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_matrix_complex_float)* B, gsl_complex_float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cgemv
int gsl_blas_cgemv(CBLAS_TRANSPOSE_t TransA, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_vector_complex_float)* X, gsl_complex_float beta, gsl_vector_complex_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cgerc
int gsl_blas_cgerc(gsl_complex_float alpha, const(gsl_vector_complex_float)* X, const(gsl_vector_complex_float)* Y, gsl_matrix_complex_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cgeru
int gsl_blas_cgeru(gsl_complex_float alpha, const(gsl_vector_complex_float)* X, const(gsl_vector_complex_float)* Y, gsl_matrix_complex_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_chemm
int gsl_blas_chemm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_matrix_complex_float)* B, gsl_complex_float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_chemv
int gsl_blas_chemv(CBLAS_UPLO_t Uplo, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_vector_complex_float)* X, gsl_complex_float beta, gsl_vector_complex_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cher
int gsl_blas_cher(CBLAS_UPLO_t Uplo, float alpha, const(gsl_vector_complex_float)* X, gsl_matrix_complex_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cher2
int gsl_blas_cher2(CBLAS_UPLO_t Uplo, gsl_complex_float alpha, const(gsl_vector_complex_float)* X, const(gsl_vector_complex_float)* Y, gsl_matrix_complex_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cher2k
int gsl_blas_cher2k(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_matrix_complex_float)* B, float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cherk
int gsl_blas_cherk(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, float alpha, const(gsl_matrix_complex_float)* A, float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cscal
void gsl_blas_cscal(gsl_complex_float alpha, gsl_vector_complex_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_csscal
void gsl_blas_csscal(float alpha, gsl_vector_complex_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_cswap
int gsl_blas_cswap(gsl_vector_complex_float* X, gsl_vector_complex_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_csymm
int gsl_blas_csymm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_matrix_complex_float)* B, gsl_complex_float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_csyr2k
int gsl_blas_csyr2k(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, const(gsl_matrix_complex_float)* B, gsl_complex_float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_csyrk
int gsl_blas_csyrk(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, gsl_complex_float beta, gsl_matrix_complex_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ctrmm
int gsl_blas_ctrmm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, gsl_matrix_complex_float* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ctrmv
int gsl_blas_ctrmv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix_complex_float)* A, gsl_vector_complex_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ctrsm
int gsl_blas_ctrsm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, gsl_complex_float alpha, const(gsl_matrix_complex_float)* A, gsl_matrix_complex_float* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ctrsv
int gsl_blas_ctrsv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix_complex_float)* A, gsl_vector_complex_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dasum
double gsl_blas_dasum(const(gsl_vector)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_daxpy
int gsl_blas_daxpy(double alpha, const(gsl_vector)* X, gsl_vector* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dcopy
int gsl_blas_dcopy(const(gsl_vector)* X, gsl_vector* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ddot
int gsl_blas_ddot(const(gsl_vector)* X, const(gsl_vector)* Y, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dgemm
int gsl_blas_dgemm(CBLAS_TRANSPOSE_t TransA, CBLAS_TRANSPOSE_t TransB, double alpha, const(gsl_matrix)* A, const(gsl_matrix)* B, double beta, gsl_matrix* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dgemv
int gsl_blas_dgemv(CBLAS_TRANSPOSE_t TransA, double alpha, const(gsl_matrix)* A, const(gsl_vector)* X, double beta, gsl_vector* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dger
int gsl_blas_dger(double alpha, const(gsl_vector)* X, const(gsl_vector)* Y, gsl_matrix* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dnrm2
double gsl_blas_dnrm2(const(gsl_vector)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_drot
int gsl_blas_drot(gsl_vector* X, gsl_vector* Y, double c, double s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_drotg
int gsl_blas_drotg(double* a, double* b, double* c, double* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_drotm
int gsl_blas_drotm(gsl_vector* X, gsl_vector* Y, const(double)* P)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_drotmg
int gsl_blas_drotmg(double* d1, double* d2, double* b1, double b2, double* P)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dscal
void gsl_blas_dscal(double alpha, gsl_vector* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsdot
int gsl_blas_dsdot(const(gsl_vector_float)* X, const(gsl_vector_float)* Y, double* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dswap
int gsl_blas_dswap(gsl_vector* X, gsl_vector* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsymm
int gsl_blas_dsymm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, double alpha, const(gsl_matrix)* A, const(gsl_matrix)* B, double beta, gsl_matrix* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsymv
int gsl_blas_dsymv(CBLAS_UPLO_t Uplo, double alpha, const(gsl_matrix)* A, const(gsl_vector)* X, double beta, gsl_vector* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsyr
int gsl_blas_dsyr(CBLAS_UPLO_t Uplo, double alpha, const(gsl_vector)* X, gsl_matrix* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsyr2
int gsl_blas_dsyr2(CBLAS_UPLO_t Uplo, double alpha, const(gsl_vector)* X, const(gsl_vector)* Y, gsl_matrix* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsyr2k
int gsl_blas_dsyr2k(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, double alpha, const(gsl_matrix)* A, const(gsl_matrix)* B, double beta, gsl_matrix* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dsyrk
int gsl_blas_dsyrk(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, double alpha, const(gsl_matrix)* A, double beta, gsl_matrix* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dtrmm
int gsl_blas_dtrmm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, double alpha, const(gsl_matrix)* A, gsl_matrix* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dtrmv
int gsl_blas_dtrmv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix)* A, gsl_vector* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dtrsm
int gsl_blas_dtrsm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, double alpha, const(gsl_matrix)* A, gsl_matrix* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dtrsv
int gsl_blas_dtrsv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix)* A, gsl_vector* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dzasum
double gsl_blas_dzasum(const(gsl_vector_complex)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_dznrm2
double gsl_blas_dznrm2(const(gsl_vector_complex)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_icamax
CBLAS_INDEX_t gsl_blas_icamax(const(gsl_vector_complex_float)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_idamax
CBLAS_INDEX_t gsl_blas_idamax(const(gsl_vector)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_isamax
CBLAS_INDEX_t gsl_blas_isamax(const(gsl_vector_float)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_izamax
CBLAS_INDEX_t gsl_blas_izamax(const(gsl_vector_complex)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sasum
float gsl_blas_sasum(const(gsl_vector_float)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_saxpy
int gsl_blas_saxpy(float alpha, const(gsl_vector_float)* X, gsl_vector_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_scasum
float gsl_blas_scasum(const(gsl_vector_complex_float)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_scnrm2
float gsl_blas_scnrm2(const(gsl_vector_complex_float)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_scopy
int gsl_blas_scopy(const(gsl_vector_float)* X, gsl_vector_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sdot
int gsl_blas_sdot(const(gsl_vector_float)* X, const(gsl_vector_float)* Y, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sdsdot
int gsl_blas_sdsdot(float alpha, const(gsl_vector_float)* X, const(gsl_vector_float)* Y, float* result)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sgemm
int gsl_blas_sgemm(CBLAS_TRANSPOSE_t TransA, CBLAS_TRANSPOSE_t TransB, float alpha, const(gsl_matrix_float)* A, const(gsl_matrix_float)* B, float beta, gsl_matrix_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sgemv
int gsl_blas_sgemv(CBLAS_TRANSPOSE_t TransA, float alpha, const(gsl_matrix_float)* A, const(gsl_vector_float)* X, float beta, gsl_vector_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sger
int gsl_blas_sger(float alpha, const(gsl_vector_float)* X, const(gsl_vector_float)* Y, gsl_matrix_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_snrm2
float gsl_blas_snrm2(const(gsl_vector_float)* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_srot
int gsl_blas_srot(gsl_vector_float* X, gsl_vector_float* Y, float c, float s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_srotg
int gsl_blas_srotg(float* a, float* b, float* c, float* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_srotm
int gsl_blas_srotm(gsl_vector_float* X, gsl_vector_float* Y, const(float)* P)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_srotmg
int gsl_blas_srotmg(float* d1, float* d2, float* b1, float b2, float* P)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sscal
void gsl_blas_sscal(float alpha, gsl_vector_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_sswap
int gsl_blas_sswap(gsl_vector_float* X, gsl_vector_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ssymm
int gsl_blas_ssymm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, float alpha, const(gsl_matrix_float)* A, const(gsl_matrix_float)* B, float beta, gsl_matrix_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ssymv
int gsl_blas_ssymv(CBLAS_UPLO_t Uplo, float alpha, const(gsl_matrix_float)* A, const(gsl_vector_float)* X, float beta, gsl_vector_float* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ssyr
int gsl_blas_ssyr(CBLAS_UPLO_t Uplo, float alpha, const(gsl_vector_float)* X, gsl_matrix_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ssyr2
int gsl_blas_ssyr2(CBLAS_UPLO_t Uplo, float alpha, const(gsl_vector_float)* X, const(gsl_vector_float)* Y, gsl_matrix_float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ssyr2k
int gsl_blas_ssyr2k(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, float alpha, const(gsl_matrix_float)* A, const(gsl_matrix_float)* B, float beta, gsl_matrix_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ssyrk
int gsl_blas_ssyrk(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, float alpha, const(gsl_matrix_float)* A, float beta, gsl_matrix_float* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_strmm
int gsl_blas_strmm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, float alpha, const(gsl_matrix_float)* A, gsl_matrix_float* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_strmv
int gsl_blas_strmv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix_float)* A, gsl_vector_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_strsm
int gsl_blas_strsm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, float alpha, const(gsl_matrix_float)* A, gsl_matrix_float* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_strsv
int gsl_blas_strsv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix_float)* A, gsl_vector_float* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zaxpy
int gsl_blas_zaxpy(gsl_complex alpha, const(gsl_vector_complex)* X, gsl_vector_complex* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zcopy
int gsl_blas_zcopy(const(gsl_vector_complex)* X, gsl_vector_complex* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zdotc
int gsl_blas_zdotc(const(gsl_vector_complex)* X, const(gsl_vector_complex)* Y, gsl_complex* dotc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zdotu
int gsl_blas_zdotu(const(gsl_vector_complex)* X, const(gsl_vector_complex)* Y, gsl_complex* dotu)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zdscal
void gsl_blas_zdscal(double alpha, gsl_vector_complex* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zgemm
int gsl_blas_zgemm(CBLAS_TRANSPOSE_t TransA, CBLAS_TRANSPOSE_t TransB, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_matrix_complex)* B, gsl_complex beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zgemv
int gsl_blas_zgemv(CBLAS_TRANSPOSE_t TransA, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_vector_complex)* X, gsl_complex beta, gsl_vector_complex* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zgerc
int gsl_blas_zgerc(gsl_complex alpha, const(gsl_vector_complex)* X, const(gsl_vector_complex)* Y, gsl_matrix_complex* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zgeru
int gsl_blas_zgeru(gsl_complex alpha, const(gsl_vector_complex)* X, const(gsl_vector_complex)* Y, gsl_matrix_complex* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zhemm
int gsl_blas_zhemm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_matrix_complex)* B, gsl_complex beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zhemv
int gsl_blas_zhemv(CBLAS_UPLO_t Uplo, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_vector_complex)* X, gsl_complex beta, gsl_vector_complex* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zher
int gsl_blas_zher(CBLAS_UPLO_t Uplo, double alpha, const(gsl_vector_complex)* X, gsl_matrix_complex* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zher2
int gsl_blas_zher2(CBLAS_UPLO_t Uplo, gsl_complex alpha, const(gsl_vector_complex)* X, const(gsl_vector_complex)* Y, gsl_matrix_complex* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zher2k
int gsl_blas_zher2k(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_matrix_complex)* B, double beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zherk
int gsl_blas_zherk(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, double alpha, const(gsl_matrix_complex)* A, double beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zscal
void gsl_blas_zscal(gsl_complex alpha, gsl_vector_complex* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zswap
int gsl_blas_zswap(gsl_vector_complex* X, gsl_vector_complex* Y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zsymm
int gsl_blas_zsymm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_matrix_complex)* B, gsl_complex beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zsyr2k
int gsl_blas_zsyr2k(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, gsl_complex alpha, const(gsl_matrix_complex)* A, const(gsl_matrix_complex)* B, gsl_complex beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_zsyrk
int gsl_blas_zsyrk(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t Trans, gsl_complex alpha, const(gsl_matrix_complex)* A, gsl_complex beta, gsl_matrix_complex* C)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ztrmm
int gsl_blas_ztrmm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, gsl_complex alpha, const(gsl_matrix_complex)* A, gsl_matrix_complex* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ztrmv
int gsl_blas_ztrmv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix_complex)* A, gsl_vector_complex* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ztrsm
int gsl_blas_ztrsm(CBLAS_SIDE_t Side, CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, gsl_complex alpha, const(gsl_matrix_complex)* A, gsl_matrix_complex* B)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_blas_ztrsv
int gsl_blas_ztrsv(CBLAS_UPLO_t Uplo, CBLAS_TRANSPOSE_t TransA, CBLAS_DIAG_t Diag, const(gsl_matrix_complex)* A, gsl_vector_complex* X)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta

Authors

Chibisi Chima-Okereke

License

Boost License 1.0