代码搜索:float

找到约 10,000 项符合「float」的源代码

代码结果 10,000
www.eeworm.com/read/191080/5168574

c betai.c

#include float betai(float a, float b, float x) { float betacf(float a, float b, float x); float gammln(float xx); void nrerror(char error_text[]); float bt; if (x < 0.0 || x
www.eeworm.com/read/292392/8359334

c grad.c

/*********************** grad.c ************************************** 3-D Reconstruction of Medical Images Three Dimensional Reconstruction Of Medical Images from Serial Slices - CT, MRI,
www.eeworm.com/read/292392/8359384

c gradpp.c

/*********************** gradpp.c ****************************** This program processess a set of CT scans for one patient. It outputs two sets of files containing predefined views of
www.eeworm.com/read/292392/8359485

c grint.c

/************************ grint.c ************************************* 3-D Reconstruction of Medical Images Three Dimensional Reconstruction Of Medical Images from Serial Slices - CT, MRI
www.eeworm.com/read/292379/8359973

cpp lcpid.cpp

#include void main() { cout
www.eeworm.com/read/392105/8362769

cpp yuanma.cpp

//【例12-7】学生成绩信息采集程序,利用异常处理,对输入信息进行检查。 #include #include #define max 3 //定义宏max class Info //定义类Info { protected: //定义保护类的成员变量 int no; char nam
www.eeworm.com/read/292107/8376952

cpp pso.cpp

#include using namespace std; //随机数定义 #define rdint(i) (rand()%(int)(i)) #define rdft() (float)((double)rdint(16384)/(16383.0)) #define rnd(a,b) (rdint((int)(b)-(int)(a)+1)+(int)(a))
www.eeworm.com/read/192440/8381456

h gen.h

#include "glob.h" #include "dist.h" #ifdef _WIN32 #include #include #else #include #include #endif #include #include //=
www.eeworm.com/read/192440/8381462

cpp ran0.cpp

#define IA 16807 #define IM 2147483647 #define AM (1.0/IM) #define IQ 127773 #define IR 2836 #define MASK 123459876 float ran0(long &idum) // "Minimal" random number generator of Park and Miller with
www.eeworm.com/read/192403/8384007

c sound1lpc.c

/********************************** 语音线性预测分析子程序 输入:*original 待语音样点 输出: a 线性预测系数 注:Framelen --200 帧长(对应采样率为8Hz,帧长为 25ms) Fshift --100 帧移 alpha --0.93预加重系数 **********