gsl.linalg

D bindings for GSL.

Members

Enums

gsl_linalg_matrix_mod_t
enum gsl_linalg_matrix_mod_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

gsl_linalg_HH_solve
int gsl_linalg_HH_solve(gsl_matrix* A, const(gsl_vector)* b, 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_linalg_HH_svx
int gsl_linalg_HH_svx(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_linalg_LQ_LQsolve
int gsl_linalg_LQ_LQsolve(gsl_matrix* Q, gsl_matrix* L, const(gsl_vector)* b, 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_linalg_LQ_Lsolve_T
int gsl_linalg_LQ_Lsolve_T(const(gsl_matrix)* LQ, const(gsl_vector)* b, 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_linalg_LQ_Lsvx_T
int gsl_linalg_LQ_Lsvx_T(const(gsl_matrix)* LQ, 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_linalg_LQ_decomp
int gsl_linalg_LQ_decomp(gsl_matrix* A, gsl_vector* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LQ_lssolve_T
int gsl_linalg_LQ_lssolve_T(const(gsl_matrix)* LQ, const(gsl_vector)* tau, const(gsl_vector)* b, gsl_vector* x, gsl_vector* residual)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LQ_solve_T
int gsl_linalg_LQ_solve_T(const(gsl_matrix)* LQ, const(gsl_vector)* tau, const(gsl_vector)* b, 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_linalg_LQ_svx_T
int gsl_linalg_LQ_svx_T(const(gsl_matrix)* LQ, const(gsl_vector)* tau, 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_linalg_LQ_unpack
int gsl_linalg_LQ_unpack(const(gsl_matrix)* LQ, const(gsl_vector)* tau, gsl_matrix* Q, gsl_matrix* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LQ_update
int gsl_linalg_LQ_update(gsl_matrix* Q, gsl_matrix* R, const(gsl_vector)* v, gsl_vector* w)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LQ_vecQ
int gsl_linalg_LQ_vecQ(const(gsl_matrix)* LQ, const(gsl_vector)* tau, gsl_vector* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LQ_vecQT
int gsl_linalg_LQ_vecQT(const(gsl_matrix)* LQ, const(gsl_vector)* tau, gsl_vector* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_decomp
int gsl_linalg_LU_decomp(gsl_matrix* A, gsl_permutation* p, int* signum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_det
double gsl_linalg_LU_det(gsl_matrix* LU, int signum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_invert
int gsl_linalg_LU_invert(const(gsl_matrix)* LU, const(gsl_permutation)* p, gsl_matrix* inverse)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_lndet
double gsl_linalg_LU_lndet(gsl_matrix* LU)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_refine
int gsl_linalg_LU_refine(const(gsl_matrix)* A, const(gsl_matrix)* LU, const(gsl_permutation)* p, const(gsl_vector)* b, gsl_vector* x, gsl_vector* residual)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_sgndet
int gsl_linalg_LU_sgndet(gsl_matrix* lu, int signum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_LU_solve
int gsl_linalg_LU_solve(const(gsl_matrix)* LU, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_LU_svx
int gsl_linalg_LU_svx(const(gsl_matrix)* LU, const(gsl_permutation)* p, 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_linalg_L_solve_T
int gsl_linalg_L_solve_T(const(gsl_matrix)* L, const(gsl_vector)* b, 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_linalg_PTLQ_LQsolve_T
int gsl_linalg_PTLQ_LQsolve_T(const(gsl_matrix)* Q, const(gsl_matrix)* L, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_PTLQ_Lsolve_T
int gsl_linalg_PTLQ_Lsolve_T(const(gsl_matrix)* LQ, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_PTLQ_Lsvx_T
int gsl_linalg_PTLQ_Lsvx_T(const(gsl_matrix)* LQ, const(gsl_permutation)* p, 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_linalg_PTLQ_decomp
int gsl_linalg_PTLQ_decomp(gsl_matrix* A, gsl_vector* tau, gsl_permutation* p, int* signum, gsl_vector* norm)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_PTLQ_decomp2
int gsl_linalg_PTLQ_decomp2(const(gsl_matrix)* A, gsl_matrix* q, gsl_matrix* r, gsl_vector* tau, gsl_permutation* p, int* signum, gsl_vector* norm)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_PTLQ_solve_T
int gsl_linalg_PTLQ_solve_T(const(gsl_matrix)* QR, const(gsl_vector)* tau, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_PTLQ_svx_T
int gsl_linalg_PTLQ_svx_T(const(gsl_matrix)* LQ, const(gsl_vector)* tau, const(gsl_permutation)* p, 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_linalg_PTLQ_update
int gsl_linalg_PTLQ_update(gsl_matrix* Q, gsl_matrix* L, const(gsl_permutation)* p, const(gsl_vector)* v, gsl_vector* w)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QRPT_QRsolve
int gsl_linalg_QRPT_QRsolve(const(gsl_matrix)* Q, const(gsl_matrix)* R, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_QRPT_Rsolve
int gsl_linalg_QRPT_Rsolve(const(gsl_matrix)* QR, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_QRPT_Rsvx
int gsl_linalg_QRPT_Rsvx(const(gsl_matrix)* QR, const(gsl_permutation)* p, 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_linalg_QRPT_decomp
int gsl_linalg_QRPT_decomp(gsl_matrix* A, gsl_vector* tau, gsl_permutation* p, int* signum, gsl_vector* norm)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QRPT_decomp2
int gsl_linalg_QRPT_decomp2(const(gsl_matrix)* A, gsl_matrix* q, gsl_matrix* r, gsl_vector* tau, gsl_permutation* p, int* signum, gsl_vector* norm)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QRPT_solve
int gsl_linalg_QRPT_solve(const(gsl_matrix)* QR, const(gsl_vector)* tau, const(gsl_permutation)* p, const(gsl_vector)* b, 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_linalg_QRPT_svx
int gsl_linalg_QRPT_svx(const(gsl_matrix)* QR, const(gsl_vector)* tau, const(gsl_permutation)* p, 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_linalg_QRPT_update
int gsl_linalg_QRPT_update(gsl_matrix* Q, gsl_matrix* R, const(gsl_permutation)* p, gsl_vector* u, const(gsl_vector)* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QR_QRsolve
int gsl_linalg_QR_QRsolve(gsl_matrix* Q, gsl_matrix* R, const(gsl_vector)* b, 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_linalg_QR_QTmat
int gsl_linalg_QR_QTmat(const(gsl_matrix)* QR, const(gsl_vector)* tau, 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_linalg_QR_QTvec
int gsl_linalg_QR_QTvec(const(gsl_matrix)* QR, const(gsl_vector)* tau, gsl_vector* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QR_Qvec
int gsl_linalg_QR_Qvec(const(gsl_matrix)* QR, const(gsl_vector)* tau, gsl_vector* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QR_Rsolve
int gsl_linalg_QR_Rsolve(const(gsl_matrix)* QR, const(gsl_vector)* b, 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_linalg_QR_Rsvx
int gsl_linalg_QR_Rsvx(const(gsl_matrix)* QR, 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_linalg_QR_decomp
int gsl_linalg_QR_decomp(gsl_matrix* A, gsl_vector* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QR_lssolve
int gsl_linalg_QR_lssolve(const(gsl_matrix)* QR, const(gsl_vector)* tau, const(gsl_vector)* b, gsl_vector* x, gsl_vector* residual)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QR_matQ
int gsl_linalg_QR_matQ(const(gsl_matrix)* QR, const(gsl_vector)* tau, 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_linalg_QR_solve
int gsl_linalg_QR_solve(const(gsl_matrix)* QR, const(gsl_vector)* tau, const(gsl_vector)* b, 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_linalg_QR_svx
int gsl_linalg_QR_svx(const(gsl_matrix)* QR, const(gsl_vector)* tau, 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_linalg_QR_unpack
int gsl_linalg_QR_unpack(const(gsl_matrix)* QR, const(gsl_vector)* tau, gsl_matrix* Q, gsl_matrix* R)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_QR_update
int gsl_linalg_QR_update(gsl_matrix* Q, gsl_matrix* R, gsl_vector* w, const(gsl_vector)* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_R_solve
int gsl_linalg_R_solve(const(gsl_matrix)* R, const(gsl_vector)* b, 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_linalg_R_svx
int gsl_linalg_R_svx(const(gsl_matrix)* R, 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_linalg_SV_decomp
int gsl_linalg_SV_decomp(gsl_matrix* A, gsl_matrix* V, gsl_vector* S, gsl_vector* work)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_SV_decomp_jacobi
int gsl_linalg_SV_decomp_jacobi(gsl_matrix* A, gsl_matrix* Q, gsl_vector* S)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_SV_decomp_mod
int gsl_linalg_SV_decomp_mod(gsl_matrix* A, gsl_matrix* X, gsl_matrix* V, gsl_vector* S, gsl_vector* work)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_SV_leverage
int gsl_linalg_SV_leverage(const(gsl_matrix)* U, gsl_vector* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_SV_solve
int gsl_linalg_SV_solve(const(gsl_matrix)* U, const(gsl_matrix)* Q, const(gsl_vector)* S, const(gsl_vector)* b, 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_linalg_balance_accum
int gsl_linalg_balance_accum(gsl_matrix* A, gsl_vector* D)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_balance_columns
int gsl_linalg_balance_columns(gsl_matrix* A, gsl_vector* D)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_balance_matrix
int gsl_linalg_balance_matrix(gsl_matrix* A, gsl_vector* D)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_bidiag_decomp
int gsl_linalg_bidiag_decomp(gsl_matrix* A, gsl_vector* tau_U, gsl_vector* tau_V)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_bidiag_unpack
int gsl_linalg_bidiag_unpack(const(gsl_matrix)* A, const(gsl_vector)* tau_U, gsl_matrix* U, const(gsl_vector)* tau_V, gsl_matrix* V, gsl_vector* diag, gsl_vector* superdiag)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_bidiag_unpack2
int gsl_linalg_bidiag_unpack2(gsl_matrix* A, gsl_vector* tau_U, gsl_vector* tau_V, gsl_matrix* V)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_bidiag_unpack_B
int gsl_linalg_bidiag_unpack_B(const(gsl_matrix)* A, gsl_vector* diag, gsl_vector* superdiag)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_cholesky_decomp
int gsl_linalg_cholesky_decomp(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_linalg_cholesky_decomp_unit
int gsl_linalg_cholesky_decomp_unit(gsl_matrix* A, gsl_vector* D)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_cholesky_invert
int gsl_linalg_cholesky_invert(gsl_matrix* cholesky)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_cholesky_solve
int gsl_linalg_cholesky_solve(const(gsl_matrix)* cholesky, const(gsl_vector)* b, 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_linalg_cholesky_svx
int gsl_linalg_cholesky_svx(const(gsl_matrix)* cholesky, 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_linalg_complex_LU_decomp
int gsl_linalg_complex_LU_decomp(gsl_matrix_complex* A, gsl_permutation* p, int* signum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_LU_det
gsl_complex gsl_linalg_complex_LU_det(gsl_matrix_complex* LU, int signum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_LU_invert
int gsl_linalg_complex_LU_invert(const(gsl_matrix_complex)* LU, const(gsl_permutation)* p, gsl_matrix_complex* inverse)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_LU_lndet
double gsl_linalg_complex_LU_lndet(gsl_matrix_complex* LU)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_LU_refine
int gsl_linalg_complex_LU_refine(const(gsl_matrix_complex)* A, const(gsl_matrix_complex)* LU, const(gsl_permutation)* p, const(gsl_vector_complex)* b, gsl_vector_complex* x, gsl_vector_complex* residual)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_LU_sgndet
gsl_complex gsl_linalg_complex_LU_sgndet(gsl_matrix_complex* LU, int signum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_LU_solve
int gsl_linalg_complex_LU_solve(const(gsl_matrix_complex)* LU, const(gsl_permutation)* p, const(gsl_vector_complex)* b, 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_linalg_complex_LU_svx
int gsl_linalg_complex_LU_svx(const(gsl_matrix_complex)* LU, const(gsl_permutation)* p, 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_linalg_complex_cholesky_decomp
int gsl_linalg_complex_cholesky_decomp(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_linalg_complex_cholesky_invert
int gsl_linalg_complex_cholesky_invert(gsl_matrix_complex* cholesky)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_cholesky_solve
int gsl_linalg_complex_cholesky_solve(const(gsl_matrix_complex)* cholesky, const(gsl_vector_complex)* b, 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_linalg_complex_cholesky_svx
int gsl_linalg_complex_cholesky_svx(const(gsl_matrix_complex)* cholesky, 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_linalg_complex_householder_hm
int gsl_linalg_complex_householder_hm(gsl_complex tau, const(gsl_vector_complex)* v, 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_linalg_complex_householder_hv
int gsl_linalg_complex_householder_hv(gsl_complex tau, const(gsl_vector_complex)* v, gsl_vector_complex* w)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_complex_householder_mh
int gsl_linalg_complex_householder_mh(gsl_complex tau, const(gsl_vector_complex)* v, 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_linalg_complex_householder_transform
gsl_complex gsl_linalg_complex_householder_transform(gsl_vector_complex* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_exponential_ss
int gsl_linalg_exponential_ss(const(gsl_matrix)* A, gsl_matrix* eA, gsl_mode_t mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_givens
void gsl_linalg_givens(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_linalg_givens_gv
void gsl_linalg_givens_gv(gsl_vector* v, size_t i, size_t j, 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_linalg_hermtd_decomp
int gsl_linalg_hermtd_decomp(gsl_matrix_complex* A, gsl_vector_complex* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hermtd_unpack
int gsl_linalg_hermtd_unpack(const(gsl_matrix_complex)* A, const(gsl_vector_complex)* tau, gsl_matrix_complex* U, gsl_vector* diag, gsl_vector* sudiag)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hermtd_unpack_T
int gsl_linalg_hermtd_unpack_T(const(gsl_matrix_complex)* A, gsl_vector* diag, gsl_vector* subdiag)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hessenberg
int gsl_linalg_hessenberg(gsl_matrix* A, gsl_vector* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hessenberg_decomp
int gsl_linalg_hessenberg_decomp(gsl_matrix* A, gsl_vector* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hessenberg_set_zero
int gsl_linalg_hessenberg_set_zero(gsl_matrix* H)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hessenberg_submatrix
int gsl_linalg_hessenberg_submatrix(gsl_matrix* M, gsl_matrix* A, size_t top, gsl_vector* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hessenberg_unpack
int gsl_linalg_hessenberg_unpack(gsl_matrix* H, gsl_vector* tau, gsl_matrix* U)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hessenberg_unpack_accum
int gsl_linalg_hessenberg_unpack_accum(gsl_matrix* H, gsl_vector* tau, gsl_matrix* U)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_hesstri_decomp
int gsl_linalg_hesstri_decomp(gsl_matrix* A, gsl_matrix* B, gsl_matrix* U, gsl_matrix* V, gsl_vector* work)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_householder_hm
int gsl_linalg_householder_hm(double tau, const(gsl_vector)* v, 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_linalg_householder_hm1
int gsl_linalg_householder_hm1(double tau, 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_linalg_householder_hv
int gsl_linalg_householder_hv(double tau, const(gsl_vector)* v, gsl_vector* w)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_householder_mh
int gsl_linalg_householder_mh(double tau, const(gsl_vector)* v, 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_linalg_householder_transform
double gsl_linalg_householder_transform(gsl_vector* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_matmult
int gsl_linalg_matmult(const(gsl_matrix)* A, const(gsl_matrix)* B, 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_linalg_matmult_mod
int gsl_linalg_matmult_mod(const(gsl_matrix)* A, gsl_linalg_matrix_mod_t modA, const(gsl_matrix)* B, gsl_linalg_matrix_mod_t modB, 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_linalg_solve_cyc_tridiag
int gsl_linalg_solve_cyc_tridiag(const(gsl_vector)* diag, const(gsl_vector)* abovediag, const(gsl_vector)* belowdiag, const(gsl_vector)* b, 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_linalg_solve_symm_cyc_tridiag
int gsl_linalg_solve_symm_cyc_tridiag(const(gsl_vector)* diag, const(gsl_vector)* offdiag, const(gsl_vector)* b, 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_linalg_solve_symm_tridiag
int gsl_linalg_solve_symm_tridiag(const(gsl_vector)* diag, const(gsl_vector)* offdiag, const(gsl_vector)* b, 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_linalg_solve_tridiag
int gsl_linalg_solve_tridiag(const(gsl_vector)* diag, const(gsl_vector)* abovediag, const(gsl_vector)* belowdiag, const(gsl_vector)* b, 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_linalg_symmtd_decomp
int gsl_linalg_symmtd_decomp(gsl_matrix* A, gsl_vector* tau)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_symmtd_unpack
int gsl_linalg_symmtd_unpack(const(gsl_matrix)* A, const(gsl_vector)* tau, gsl_matrix* Q, gsl_vector* diag, gsl_vector* subdiag)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
gsl_linalg_symmtd_unpack_T
int gsl_linalg_symmtd_unpack_T(const(gsl_matrix)* A, gsl_vector* diag, gsl_vector* subdiag)
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