nrutil.h

来自「隐马尔科夫模型的C代码」· C头文件 代码 · 共 30 行

H
30
字号
/***      File:   nrutil.h**      Purpose: Memory allocation routines borrowed from the**              book "Numerical Recipes" by Press, Flannery, Teukolsky,**              and Vetterling.**              state sequence and probablity of observing a sequence**              given the model.**      Organization: University of Maryland****      $Id: nrutil.h,v 1.2 1998/02/19 16:32:42 kanungo Exp kanungo $*/float *vector();float **matrix();float **convert_matrix();double *dvector();double **dmatrix();int *ivector();int **imatrix();float **submatrix();void free_vector();void free_dvector();void free_ivector();void free_matrix();void free_dmatrix();void free_imatrix();void free_submatrix();void free_convert_matrix();void nrerror();

⌨️ 快捷键说明

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