sisc.h
来自「svd 算法代码 This directory contains instru」· C头文件 代码 · 共 23 行
H
23 行
/**************************************************************** * Sparse SVD Via Subspace Iteraton Procedure for Equivalent * * 2-Cyclic and A'A Eigensystems. * * * * Constants used by sis1 and sis2. * ****************************************************************/#define NMAX 4000 /*Cyclic eigensystem: upper bound on {number of rows (nrow) + number of columns (ncol) } for the sparse matrix A stored in Harwell-Boeing format. The input file "matrix" must have (nrow + ncol) <= NMAX */#define NZMAX 70000 /*NZMAX is an upper bound on the number of non-zeroes for the sparse matrix A stored in "matrix", i.e., nnzero <= NZMAX */#define NSIG 100 /*NSIG is an upper bound on the number of desired singular triplets of the sparse matrix A, i.e., em2 <= NSIG*/#define ZERO 0.0#define ONE 1.0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?