代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/359565/10138695

h shead.h

#ifndef SHEAD #define SHEAD #include #include #include #include #define FINANCESIZE 50/*初始化收支缓存区的大小*/ #define FINANCEINCREASE 10/*当空间用完时每次增加的大
www.eeworm.com/read/359499/10142169

cs copy of barplot.cs

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace Strategy { /// /// Summary description for BarPlo
www.eeworm.com/read/359499/10142874

cs barplot.cs

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace Strategy { /// /// Summary description for BarPlo
www.eeworm.com/read/359401/10147478

c lbg_engi.c

/*==============================================================*/ /* This is the engine of LBG algorithm */ /*
www.eeworm.com/read/163738/10147621

c try_fft.c

#include #include #include #include #include #define uchar unsigned char #define uint unsigned int //#define size 128 const float pi=3.141
www.eeworm.com/read/163644/10151747

bak zixiangguang.c.bak

//*****语音基音检测程序*****// //采用自相关法进行基音检测程序 //输入:sample[] 语音采样点 // length 最大样点数 //输出:Pitch[] 基音周期 //参数解释:FRAME--480 帧长度 ; BETWEEN---160 帧与帧间隔;Fs--12000 采样频率 //准备对20个帧进行处理,设置Pitch长度为20,2
www.eeworm.com/read/163644/10151751

c zixiangguang.c

//*****语音基音检测程序*****// //采用自相关法进行基音检测程序 //输入:sample[] 语音采样点 // length 最大样点数 //输出:Pitch[] 基音周期 //参数解释:FRAME--480 帧长度 ; BETWEEN---160 帧与帧间隔;Fs--12000 采样频率 //准备对100个帧进行处理,设置Pitch长度为100
www.eeworm.com/read/163588/10153349

h avrdummy.h

/* * $Id: AvrDummy.h,v 1.1 2002/05/25 17:59:46 troth Exp $ * **************************************************************************** * * uisp - The Micro In-System Programmer for Atmel AVR m
www.eeworm.com/read/359101/10165913

cpp 列主元高斯消去法.cpp

#include #include void main() { int i; float *x; float c[3][4] ={0.101,2.304,3.555,1.183, -1.347,3.712,4.623,2.137, -2.835,1.072,5.643,3.035}; float *ColPi
www.eeworm.com/read/359101/10165917

cpp 雅可比迭代法.cpp

#include #include #define EPS 1e-6 #define MAX 100 float *Jacobi(float a[3][4],int n) { float *x,*y,epsilon,s; int i,j,k=0; x =new float[(n*sizeof(float))]; //here