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

関数

void dgelqf (int m, int n, int lda, double a[], double tau[], double work[], int lwork, int *info)
 LQ分解
 
void dgeqp3 (int m, int n, int lda, double a[], int jpvt[], double tau[], double work[], int lwork, int *info)
 QR分解 (ピボット選択付き)
 
void dgeqrf (int m, int n, int lda, double a[], double tau[], double work[], int lwork, int *info)
 QR分解
 
void dorglq (int m, int n, int k, int lda, double a[], double tau[], double work[], int lwork, int *info)
 LQ分解の行列Qの生成
 
void dorgqr (int m, int n, int k, int lda, double a[], double tau[], double work[], int lwork, int *info)
 QR分解の行列Qの生成
 
void dormlq (char side, char trans, int m, int n, int k, int lda, double a[], double tau[], int ldc, double c[], double work[], int lwork, int *info)
 LQ分解のQによる行列の乗算
 
void dormqr (char side, char trans, int m, int n, int k, int lda, double a[], double tau[], int ldc, double c[], double work[], int lwork, int *info)
 QR分解のQによる行列の乗算
 

詳解

D5. QR分解 プログラムを表示しています.