![]() |
XLPack 7.0
XLPack 数値計算ライブラリ (C API) リファレンスマニュアル
|
関数 | |
| double | dasum (int n, double x[], int incx) |
| |x| (1-ノルム) (BLAS 1) | |
| void | daxpy (int n, double a, double x[], int incx, double y[], int incy) |
| y <- ax + y (BLAS 1) | |
| void | dcopy (int n, double x[], int incx, double y[], int incy) |
| y <- x (BLAS 1) | |
| double | ddot (int n, double x[], int incx, double y[], int incy) |
| xT * y (BLAS 1) | |
| double | dnrm2 (int n, double x[], int incx) |
| ||x||2 (2-ノルム) (BLAS 1) | |
| void | drot (int n, double x[], int incx, double y[], int incy, double c, double s) |
| ギブンス変換を適用する (BLAS 1) | |
| void | drotg (double *a, double *b, double *c, double *s) |
| ギブンス変換を求める (BLAS 1) | |
| void | drotm (int n, double x[], int incx, double y[], int incy, double p[]) |
| 修正ギブンス変換を適用する (BLAS 1) | |
| void | drotmg (double *d1, double *d2, double *x1, double y1, double p[]) |
| 修正ギブンス変換を求める (BLAS 1) | |
| void | dscal (int n, double a, double x[], int incx) |
| x <- ax (BLAS 1) | |
| void | dswap (int n, double x[], int incx, double y[], int incy) |
| y <-> x (BLAS 1) | |
D1a. ベクトル基本演算 BLAS1 プログラムを表示しています.