XLPack 7.0
XLPack Numerical Library (C API) Reference Manual
Loading...
Searching...
No Matches
Functions

Functions

void coo_csc (int m, int n, int nnz, const double val[], const int rowind[], const int colind[], int base, double val2[], int colptr2[], int rowind2[], int base2, int *info)
 COO -> CSC
 
void coo_csr (int m, int n, int nnz, const double val[], const int rowind[], const int colind[], int base, double val2[], int rowptr2[], int colind2[], int base2, int *info)
 COO -> CSR
 
void coo_dense (int m, int n, int nnz, const double val[], const int rowind[], const int colind[], int base, int lda, double a[], int *info)
 COO -> dense matrix
 
void csc_coo (int m, int n, const double val[], const int colptr[], const int rowind[], int base, double val2[], int rowind2[], int colind2[], int base2, int *info)
 CSC -> COO
 
void csc_csr (int m, int n, const double val[], const int ptr[], const int ind[], int base, double val2[], int ptr2[], int ind2[], int base2, int *info)
 CSC <-> CSR
 
void csc_dense (int m, int n, const double val[], const int colptr[], const int rowind[], int base, int lda, double a[], int *info)
 CSC -> dense matrix
 
void csc_ssc (char uplo, int n, const double val[], const int colptr[], const int rowind[], int base, int maxnnz2, double val2[], int colptr2[], int rowind2[], int base2, int *info)
 CSC (symmetric full matrix) -> SSC (CSC sparse matrix packed form)
 
void csr_coo (int m, int n, const double val[], const int rowptr[], const int colind[], int base, double val2[], int rowind2[], int colind2[], int base2, int *info)
 CSR -> COO
 
void csr_dense (int m, int n, const double val[], const int rowptr[], const int colind[], int base, int lda, double a[], int *info)
 CSR -> dense matrix
 
void csr_ssr (char uplo, int n, const double val[], const int rowptr[], const int colind[], int base, int maxnnz2, double val2[], int rowptr2[], int colind2[], int base2, int *info)
 CSR (symmetric full matrix) -> SSR (CSR sparse matrix packed form)
 
void dense_coo (int m, int n, int lda, const double a[], int *nnz, double val[], int rowind[], int colind[], int base, int *info)
 Dense matrix -> COO
 
void dense_csc (int m, int n, int lda, const double a[], int maxnnz, double val[], int colptr[], int rowind[], int base, int *info)
 Dense matrix -> CSC
 
void dense_csr (int m, int n, int lda, const double a[], int maxnnz, double val[], int rowptr[], int colind[], int base, int *info)
 Dense matrix -> CSR
 
void ssc_csc (char uplo, int n, const double val[], const int colptr[], const int rowind[], int base, int maxnnz2, double val2[], int colptr2[], int rowind2[], int base2, int *info)
 SSC (CSC sparse matrix packed form) -> CSC (symmetric full matrix)
 
void ssr_csr (char uplo, int n, const double val[], const int rowptr[], const int colind[], int base, int maxnnz2, double val2[], int rowptr2[], int colind2[], int base2, int *info)
 SSR (CSR sparse matrix packed form) -> CSR (symmetric full matrix)
 

Detailed Description

This is the group of D1b9. Matrix storage mode conversion