⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cqrsl.h

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 H
字号:
/*: Computes coord transf etc from QR factorisation of complex matrix */
extern int v3p_netlib_cqrsl_(
  v3p_netlib_complex v3p_netlib_const *x, v3p_netlib_integer v3p_netlib_const *ldx, /*!< (IN) output of cqrdc_, n x k matrix */
  v3p_netlib_integer v3p_netlib_const *n, v3p_netlib_integer v3p_netlib_const *k, /*!< (IN) k <= min(n,p) with n,p from cqrdc_ */
  v3p_netlib_complex v3p_netlib_const *qraux, /*!< (IN) qraux output of cqrdc_ */
  v3p_netlib_complex v3p_netlib_const *y, /*!< (IN) n-vector to operate on */
  v3p_netlib_complex *qy,  /*!< (OUT) q*y */
  v3p_netlib_complex *qty, /*!< (OUT) q^T*y (conjugate transpose if complex) */
  v3p_netlib_complex *b,   /*!< (OUT) solution b of min norm_2(y - x*b) */
  v3p_netlib_complex *rsd, /*!< (OUT) least squares residual y - x*b = proj of y on orth complement of columns(x) */
  v3p_netlib_complex *xb,  /*!< (OUT) least squares approx of x*b = proj of y on columns(x) */
  v3p_netlib_integer v3p_netlib_const *job, /*!< (IN) decimal acbde: a:compute qy; c:qty; b:qty+b; d:qty+rsd; e:qty+xb */
  v3p_netlib_integer *info /*!< non-zero if r is singular and b is set. */
  );

⌨️ 快捷键说明

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