#include <stdarg.h>
#include <gandalf/linalg/matf_symmetric.h>
#include <gandalf/linalg/matf_triangular.h>
#include <gandalf/linalg/matf_diagonal.h>
#include <gandalf/linalg/matf_gen.h>
#include <gandalf/linalg/vecf_gen.h>
#include <gandalf/linalg/matvecf_clapack.h>
#include <gandalf/linalg/clapack.h>
#include <gandalf/linalg/cblas.h>
#include <gandalf/common/numerics.h>
#include <gandalf/common/allocate.h>
#include <gandalf/common/misc_error.h>
Classes | |
struct | EigenStuff |
Functions | |
Gan_SquMatrix_f * | gan_symmatf_set_size (Gan_SquMatrix_f *A, unsigned long size) |
Set square matrix to be symmetric with given size. | |
Gan_SquMatrix_f * | gan_symmatf_fill_va (Gan_SquMatrix_f *A, unsigned long size,...) |
Fill symmetric matrix from variable argument list. | |
Gan_SquMatrix_f * | gan_symmatf_fill_const_q (Gan_SquMatrix_f *A, unsigned long size, float value) |
Fill symmetric matrix with constant value, and set its size. | |
Gan_Bool | gan_symmatf_read_va (const Gan_SquMatrix_f *A, unsigned long size,...) |
Read the elements of a symmetric matrix into pointers. | |
Gan_SquMatrix_f * | gan_symmatf_insert_gen (Gan_SquMatrix_f *S, unsigned long rS, unsigned long cS, const Gan_Matrix_f *B, Gan_TposeFlag B_tr, unsigned long rB, unsigned long cB, unsigned long rows, unsigned long cols) |
Inserts part of generic matrix in symmetric matrix. | |
Gan_SquMatrix_f * | gan_symmatf_insertv_gen (Gan_SquMatrix_f *S, unsigned long rS, unsigned long cS, const Gan_Vector_f *x, Gan_TposeFlag x_tr, unsigned long rx, unsigned long size) |
Inserts part of vector in symmetric matrix. | |
Gan_SquMatrix_f * | gan_symmatf_insertsym (Gan_SquMatrix_f *A, unsigned long rA, const Gan_SquMatrix_f *B, unsigned long rB, unsigned long size) |
Insert diagonal part of symmetric matrix in symmetric matrix. | |
Gan_SquMatrix_f * | gan_symmatf_insertsym_od (Gan_SquMatrix_f *A, unsigned long rA, unsigned long cA, const Gan_SquMatrix_f *B, unsigned long rB, unsigned long cB, unsigned long rows, unsigned long cols) |
Insert off-diagonal part of symmetric matrix in symmetric matrix. | |
Gan_Bool | gan_symmatf_eigen (Gan_SquMatrix_f *A, Gan_SquMatrix_f *W, Gan_Matrix_f *Z, Gan_Bool sort, float *work, unsigned long work_size) |
Computes eigenvalues and eigenvectors of a symmetric matrix. | |
Gan_SquMatrix_f * | gan_symmatf_form_gen (Gan_SquMatrix_f *A, unsigned long size, float *data, size_t data_size) |
Gan_SquMatrix_f * | gan_symmatf_fill_vap (Gan_SquMatrix_f *A, unsigned long size, va_list *aptr) |
Fill symmetric matrix with values from variable argument list. |
Part of: Gandalf Library