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

📄 bls2.h

📁 svd 算法代码 This directory contains instrumented SVDPACKC Version 1.0 (ANSI-C) programs for compiling
💻 H
字号:
/**************************************************************** * Sparse SVD Via Hybrid Block Lanczos Procedure for Equivalent * * A'A Eigensystems.                                            * *                                                              * * Global variables and common areas used by bls2 and its       * * functions.                                                   * ****************************************************************/int    *pointr ,      /* pointer to column start array         */	*rowind ;      /* pointer to row indices array          */float  *value  ;      /* pointer to nonzero values array       */int    mxvcount,      /* matrix-vector multiplications counter */         mtxvcount,     /* transposed matrix-vector mult. counter*/	iconv,         /* converged vector counter              */	nn,            /* current subspace size                 */	iter;          /* iteration counter                     *//* memory for the following arrays are allocated in bls2.c and  * * blklan2.c (see blklan2.c for dimensions of these arrays)     */float *alpha,         /* diagonal elements of bidiagonal matrix*		        * from single vector Lanczos (inner)    *			* recursion                             */       *beta,          /* super-diagonals of bidiagonal matrix  *			* from single vector Lanczos (inner)    *			* recursion                             */       *p,             /* work array                            */       *q,             /* work array                            */       *t,             /* work array                            */       *z;             /* work array                            */float *tres,          /* temporary residual array              */       *y,             /* work array                            */       *vv,            /* work array                            */       *v0,            /* array of converged right S-vectors    */       *uvtmp,         /* temporary work space                  */       *pp,            /* left S-vectors of block upper bi-     * 			* diagonal matrix from outer recursion  */        *qq,            /* right S-vectors of block upper bi-    *			* diagonal matrix from outer recursion  */       *ztemp;         /* temporary work space                  */float **yp,           /* corresponding 2-dimensional           */        **vvp,          /* ...array representation of the above  */       **uvtmpp,       /* ...linear arrays                      */       **ppp,        **qqp,       **ztempp;

⌨️ 快捷键说明

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