zqrdc.h

来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· C头文件 代码 · 共 11 行

H
11
字号
/*: Computes QR factorisation of an n x p double complex matrix */
extern int v3p_netlib_zqrdc_(
  v3p_netlib_doublecomplex *x, v3p_netlib_integer v3p_netlib_const *ldx, /*!< (IN/OUT) matrix, n rows, p columns, stored row-wise */
  v3p_netlib_integer v3p_netlib_const *n, v3p_netlib_integer v3p_netlib_const *p,
  v3p_netlib_doublecomplex *qraux, /*!< (OUT) further info necessary to recover R part from x */
  v3p_netlib_integer *jpvt,  /*!< (IN/OUT) length p; selection of pivot columns: */
                             /*   ==0 ==> any; >0 ==> initial column; <0 ==> final */
  v3p_netlib_doublecomplex *work,  /*!< (IN/OUT) scratch work area of length p */
  v3p_netlib_integer v3p_netlib_const *job /*!< (IN) if == 0, no pivoting is done */
  );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?