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

📄 vtest.h

📁 Dieharder是一个是一个测试一序列伪随机数的随机性能的测试套件
💻 H
字号:
/* *======================================================================== * $Id: Btest.c 212 2006-07-21 18:07:33Z rgb $ * * See copyright in copyright.h and the accompanying file COPYING *======================================================================== */ /*  * This is the struct used in Vtest.c, a standard Pearson's chisq  * test on a vector of measurements and corresponding expected  * mean values.  */ typedef struct {   unsigned int nvec;  /* Length of x,y vectors */   unsigned int ndof;  /* Number of degrees of freedom, default nvec-1 */   double *x;          /* Vector of measurements */   double *y;          /* Vector of expected values */   double chisq;       /* Resulting Pearson's chisq */   double pvalue;      /* Resulting p-value */ } Vtest;

⌨️ 快捷键说明

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