代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/178336/9407307

c morderb.c

#include #include #include #include "msp.h" void morderb(float *f1,float *f2,float *f3,float *f4,float fs, float alpha1,float alpha2,int *l,int iband,int itype,int *
www.eeworm.com/read/178336/9407327

c mcorpsd.c

#include #include #include #include "msp.h" void mcorpsd(complex x[],complex r[],int n,int lag,int iwindow,float t) { /*--------------------------------------------
www.eeworm.com/read/178336/9407336

c mbiline.c

#include #include #include #include "msp.h" void mbiline(float d[],float c[],int ln, float b[],float a[],int *ierror) { /*-------------------------
www.eeworm.com/read/178336/9407347

c munwrap.c

#include #include #include #include "msp.h" void munwrap(float phase[],int n) { /*---------------------------------------------------------------------- Routine
www.eeworm.com/read/374289/9412351

cpp lesson36.cpp

/************************************** * * * Jeff Molofee's Basecode Example * * nehe.gamedev.net * * 2001
www.eeworm.com/read/178034/9422819

c dinospin.c

/* Copyright (c) Mark J. Kilgard, 1994. */ /* This program is freely distributable without licensing fees and is provided without guarantee or warrantee expressed or implied. This prog
www.eeworm.com/read/178032/9422834

c dinospin.c

/* Copyright (c) Mark J. Kilgard, 1994. */ /* This program is freely distributable without licensing fees and is provided without guarantee or warrantee expressed or implied. This prog
www.eeworm.com/read/373994/9424148

c lt525.c

# include "stdio.h" void main( ) { float sum (float *p,int n); float num[10],total; int i; for (i=0;i
www.eeworm.com/read/373994/9424159

c lt52.c

# include "stdio.h" void main( ) { int i; float j; int *pointer_1; float *pointer_2; scanf("%d%f",&i,&j); pointer_1=&i; pointer_2=&j; printf("%d %f\n ",i,j); printf(
www.eeworm.com/read/373994/9424245

c lt714.c

# define f(a,b) a*b*a void main ( ) { float x=8,y=25,z; z=f(x,y); printf("%6.2f\t",z); z=f(x*x+6*x-8,y+21); printf("%6.2f\n",z); }