| igraph Reference Manual |
|---|
typedef struct igraph_arpack_storage_t {
long int maxn, maxncv, maxldv;
igraph_real_t *v;
igraph_real_t *workl;
igraph_real_t *workd;
igraph_real_t *d;
igraph_real_t *resid;
igraph_real_t *ax;
long int *select;
igraph_real_t *di; /* These two only for non-symmetric problems */
igraph_real_t *workev;
} igraph_arpack_storage_t;
Public members, do not modify them directly, these are considered to be read-only.
Values:
|
Maximum rank of matrix. |
|
Maximum NCV. |
|
Maximum LDV. |
These members are considered to be private:
Values:
|
Working memory. |
|
Working memory. |
|
Memory for eigenvalues. |
|
Memory for residuals. |
|
Working memory. |
|
Working memory. |
|
Memory for eigenvalues, non-symmetric case only. |
|
Working memory, non-symmetric case only. |
<< 2.1. igraph_arpack_options_t — Options for ARPACK |
2.3. igraph_arpack_function_t — Type of the ARPACK callback function >> |