XLPack 7.0
XLPack 数値計算ライブラリ (C API) リファレンスマニュアル
読み取り中…
検索中…
一致する文字列を見つけられません
関数

関数

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 -> 密行列
 
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 -> 密行列
 
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 (対称なフル行列) -> SSC (CSC 対称行列形式)
 
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 -> 密行列
 
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 (対称なフル行列) -> SSR (CSR 対称行列形式)
 
void dense_coo (int m, int n, int lda, const double a[], int *nnz, double val[], int rowind[], int colind[], int base, int *info)
 密行列 -> 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)
 密行列 -> 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)
 密行列 -> 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 対称行列形式) -> CSC (対称なフル行列)
 
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 対称行列形式) -> CSR (対称なフル行列)
 

詳解

D1b9. 行列格納形式変換 プログラムを表示しています.