gsl.cblas

D bindings for GSL.

Members

Enums

CBLAS_DIAG
enum 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_ORDER
enum 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
enum 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
enum 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
enum 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

cblas_caxpy
void cblas_caxpy(int N, const(void)* alpha, const(void)* X, int incX, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ccopy
void cblas_ccopy(int N, const(void)* X, int incX, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cdotc_sub
void cblas_cdotc_sub(int N, const(void)* X, int incX, const(void)* Y, int incY, void* dotc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cdotu_sub
void cblas_cdotu_sub(int N, const(void)* X, int incX, const(void)* Y, int incY, void* dotu)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cgbmv
void cblas_cgbmv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, int KL, int KU, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cgemm
void cblas_cgemm(CBLAS_ORDER Order, CBLAS_TRANSPOSE TransA, CBLAS_TRANSPOSE TransB, int M, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cgemv
void cblas_cgemv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cgerc
void cblas_cgerc(CBLAS_ORDER order, int M, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cgeru
void cblas_cgeru(CBLAS_ORDER order, int M, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_chbmv
void cblas_chbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_chemm
void cblas_chemm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, int M, int N, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_chemv
void cblas_chemv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cher
void cblas_cher(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(void)* X, int incX, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cher2
void cblas_cher2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cher2k
void cblas_cher2k(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, float beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cherk
void cblas_cherk(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, float alpha, const(void)* A, int lda, float beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_chpmv
void cblas_chpmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* Ap, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_chpr
void cblas_chpr(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(void)* X, int incX, void* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_chpr2
void cblas_chpr2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* Ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cscal
void cblas_cscal(int N, const(void)* alpha, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_csscal
void cblas_csscal(int N, float alpha, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_cswap
void cblas_cswap(int N, void* X, int incX, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_csymm
void cblas_csymm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, int M, int N, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_csyr2k
void cblas_csyr2k(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_csyrk
void cblas_csyrk(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctbmv
void cblas_ctbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctbsv
void cblas_ctbsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctpmv
void cblas_ctpmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* Ap, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctpsv
void cblas_ctpsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* Ap, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctrmm
void cblas_ctrmm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, const(void)* alpha, const(void)* A, int lda, void* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctrmv
void cblas_ctrmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctrsm
void cblas_ctrsm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, const(void)* alpha, const(void)* A, int lda, void* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ctrsv
void cblas_ctrsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dasum
double cblas_dasum(int N, const(double)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_daxpy
void cblas_daxpy(int N, double alpha, const(double)* X, int incX, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dcopy
void cblas_dcopy(int N, const(double)* X, int incX, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ddot
double cblas_ddot(int N, const(double)* X, int incX, const(double)* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dgbmv
void cblas_dgbmv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, int KL, int KU, double alpha, const(double)* A, int lda, const(double)* X, int incX, double beta, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dgemm
void cblas_dgemm(CBLAS_ORDER Order, CBLAS_TRANSPOSE TransA, CBLAS_TRANSPOSE TransB, int M, int N, int K, double alpha, const(double)* A, int lda, const(double)* B, int ldb, double beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dgemv
void cblas_dgemv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, double alpha, const(double)* A, int lda, const(double)* X, int incX, double beta, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dger
void cblas_dger(CBLAS_ORDER order, int M, int N, double alpha, const(double)* X, int incX, const(double)* Y, int incY, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dnrm2
double cblas_dnrm2(int N, const(double)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_drot
void cblas_drot(int N, double* X, int incX, double* Y, int incY, 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.
cblas_drotg
void cblas_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.
cblas_drotm
void cblas_drotm(int N, double* X, int incX, double* Y, int incY, 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.
cblas_drotmg
void cblas_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.
cblas_dsbmv
void cblas_dsbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, int K, double alpha, const(double)* A, int lda, const(double)* X, int incX, double beta, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dscal
void cblas_dscal(int N, double alpha, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsdot
double cblas_dsdot(int N, const(float)* X, int incX, const(float)* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dspmv
void cblas_dspmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(double)* Ap, const(double)* X, int incX, double beta, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dspr
void cblas_dspr(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(double)* X, int incX, double* Ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dspr2
void cblas_dspr2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(double)* X, int incX, const(double)* Y, int incY, double* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dswap
void cblas_dswap(int N, double* X, int incX, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsymm
void cblas_dsymm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, int M, int N, double alpha, const(double)* A, int lda, const(double)* B, int ldb, double beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsymv
void cblas_dsymv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(double)* A, int lda, const(double)* X, int incX, double beta, double* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsyr
void cblas_dsyr(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(double)* X, int incX, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsyr2
void cblas_dsyr2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(double)* X, int incX, const(double)* Y, int incY, double* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsyr2k
void cblas_dsyr2k(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, double alpha, const(double)* A, int lda, const(double)* B, int ldb, double beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dsyrk
void cblas_dsyrk(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, double alpha, const(double)* A, int lda, double beta, double* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtbmv
void cblas_dtbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(double)* A, int lda, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtbsv
void cblas_dtbsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(double)* A, int lda, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtpmv
void cblas_dtpmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(double)* Ap, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtpsv
void cblas_dtpsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(double)* Ap, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtrmm
void cblas_dtrmm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, double alpha, const(double)* A, int lda, double* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtrmv
void cblas_dtrmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(double)* A, int lda, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtrsm
void cblas_dtrsm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, double alpha, const(double)* A, int lda, double* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dtrsv
void cblas_dtrsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(double)* A, int lda, double* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dzasum
double cblas_dzasum(int N, const(void)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_dznrm2
double cblas_dznrm2(int N, const(void)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_icamax
size_t cblas_icamax(int N, const(void)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_idamax
size_t cblas_idamax(int N, const(double)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_isamax
size_t cblas_isamax(int N, const(float)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_izamax
size_t cblas_izamax(int N, const(void)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sasum
float cblas_sasum(int N, const(float)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_saxpy
void cblas_saxpy(int N, float alpha, const(float)* X, int incX, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_scasum
float cblas_scasum(int N, const(void)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_scnrm2
float cblas_scnrm2(int N, const(void)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_scopy
void cblas_scopy(int N, const(float)* X, int incX, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sdot
float cblas_sdot(int N, const(float)* X, int incX, const(float)* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sdsdot
float cblas_sdsdot(int N, float alpha, const(float)* X, int incX, const(float)* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sgbmv
void cblas_sgbmv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, int KL, int KU, float alpha, const(float)* A, int lda, const(float)* X, int incX, float beta, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sgemm
void cblas_sgemm(CBLAS_ORDER Order, CBLAS_TRANSPOSE TransA, CBLAS_TRANSPOSE TransB, int M, int N, int K, float alpha, const(float)* A, int lda, const(float)* B, int ldb, float beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sgemv
void cblas_sgemv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, float alpha, const(float)* A, int lda, const(float)* X, int incX, float beta, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sger
void cblas_sger(CBLAS_ORDER order, int M, int N, float alpha, const(float)* X, int incX, const(float)* Y, int incY, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_snrm2
float cblas_snrm2(int N, const(float)* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_srot
void cblas_srot(int N, float* X, int incX, float* Y, int incY, 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.
cblas_srotg
void cblas_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.
cblas_srotm
void cblas_srotm(int N, float* X, int incX, float* Y, int incY, 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.
cblas_srotmg
void cblas_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.
cblas_ssbmv
void cblas_ssbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, int K, float alpha, const(float)* A, int lda, const(float)* X, int incX, float beta, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sscal
void cblas_sscal(int N, float alpha, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sspmv
void cblas_sspmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(float)* Ap, const(float)* X, int incX, float beta, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sspr
void cblas_sspr(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(float)* X, int incX, float* Ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sspr2
void cblas_sspr2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(float)* X, int incX, const(float)* Y, int incY, float* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_sswap
void cblas_sswap(int N, float* X, int incX, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ssymm
void cblas_ssymm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, int M, int N, float alpha, const(float)* A, int lda, const(float)* B, int ldb, float beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ssymv
void cblas_ssymv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(float)* A, int lda, const(float)* X, int incX, float beta, float* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ssyr
void cblas_ssyr(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(float)* X, int incX, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ssyr2
void cblas_ssyr2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, float alpha, const(float)* X, int incX, const(float)* Y, int incY, float* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ssyr2k
void cblas_ssyr2k(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, float alpha, const(float)* A, int lda, const(float)* B, int ldb, float beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ssyrk
void cblas_ssyrk(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, float alpha, const(float)* A, int lda, float beta, float* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_stbmv
void cblas_stbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(float)* A, int lda, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_stbsv
void cblas_stbsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(float)* A, int lda, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_stpmv
void cblas_stpmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(float)* Ap, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_stpsv
void cblas_stpsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(float)* Ap, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_strmm
void cblas_strmm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, float alpha, const(float)* A, int lda, float* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_strmv
void cblas_strmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(float)* A, int lda, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_strsm
void cblas_strsm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, float alpha, const(float)* A, int lda, float* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_strsv
void cblas_strsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(float)* A, int lda, float* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_xerbla
void cblas_xerbla(int p, const(char)* rout, const(char)* form, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zaxpy
void cblas_zaxpy(int N, const(void)* alpha, const(void)* X, int incX, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zcopy
void cblas_zcopy(int N, const(void)* X, int incX, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zdotc_sub
void cblas_zdotc_sub(int N, const(void)* X, int incX, const(void)* Y, int incY, void* dotc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zdotu_sub
void cblas_zdotu_sub(int N, const(void)* X, int incX, const(void)* Y, int incY, void* dotu)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zdscal
void cblas_zdscal(int N, double alpha, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zgbmv
void cblas_zgbmv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, int KL, int KU, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zgemm
void cblas_zgemm(CBLAS_ORDER Order, CBLAS_TRANSPOSE TransA, CBLAS_TRANSPOSE TransB, int M, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zgemv
void cblas_zgemv(CBLAS_ORDER order, CBLAS_TRANSPOSE TransA, int M, int N, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zgerc
void cblas_zgerc(CBLAS_ORDER order, int M, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zgeru
void cblas_zgeru(CBLAS_ORDER order, int M, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zhbmv
void cblas_zhbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zhemm
void cblas_zhemm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, int M, int N, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zhemv
void cblas_zhemv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* A, int lda, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zher
void cblas_zher(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(void)* X, int incX, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zher2
void cblas_zher2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* A, int lda)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zher2k
void cblas_zher2k(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, double beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zherk
void cblas_zherk(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, double alpha, const(void)* A, int lda, double beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zhpmv
void cblas_zhpmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* Ap, const(void)* X, int incX, const(void)* beta, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zhpr
void cblas_zhpr(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, double alpha, const(void)* X, int incX, void* A)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zhpr2
void cblas_zhpr2(CBLAS_ORDER order, CBLAS_UPLO Uplo, int N, const(void)* alpha, const(void)* X, int incX, const(void)* Y, int incY, void* Ap)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zscal
void cblas_zscal(int N, const(void)* alpha, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zswap
void cblas_zswap(int N, void* X, int incX, void* Y, int incY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zsymm
void cblas_zsymm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, int M, int N, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zsyr2k
void cblas_zsyr2k(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* B, int ldb, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_zsyrk
void cblas_zsyrk(CBLAS_ORDER Order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE Trans, int N, int K, const(void)* alpha, const(void)* A, int lda, const(void)* beta, void* C, int ldc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztbmv
void cblas_ztbmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztbsv
void cblas_ztbsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, int K, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztpmv
void cblas_ztpmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* Ap, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztpsv
void cblas_ztpsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* Ap, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztrmm
void cblas_ztrmm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, const(void)* alpha, const(void)* A, int lda, void* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztrmv
void cblas_ztrmv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* A, int lda, void* X, int incX)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztrsm
void cblas_ztrsm(CBLAS_ORDER Order, CBLAS_SIDE Side, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int M, int N, const(void)* alpha, const(void)* A, int lda, void* B, int ldb)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
cblas_ztrsv
void cblas_ztrsv(CBLAS_ORDER order, CBLAS_UPLO Uplo, CBLAS_TRANSPOSE TransA, CBLAS_DIAG Diag, int N, const(void)* A, int lda, void* X, int incX)
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