![]() |
XLPack 6.1
C/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 プログラムを表示しています.