代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/299869/7827605

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/299869/7827611

c mbutwcf.c

#include #include #include #include "msp.h" void mbutwcf(int l,int k,int ln,float d[],float c[],int *ierror) { /*---------------------------------------------------
www.eeworm.com/read/299869/7827613

c mdecint.c

#include #include #include #include "msp.h" void mdecint(float x[],float h[],float y[],int nh,int ny,int m, int l,int *k) { /*-------------------------------------
www.eeworm.com/read/299869/7827630

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/299869/7827634

c mconvo1.c

#include #include #include #include "msp.h" void mconvo1(float x[],float h[],float y[],int n,int m,int l) { /*------------------------------------------------------
www.eeworm.com/read/299869/7827642

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/299869/7827677

c munwrap.c

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

txt 例8.12.txt

  例8.12 float average(float array[ ] ,int n)  {int i;   float aver,sum=array[0];   for(i=1;i
www.eeworm.com/read/399843/7831284

txt 例10.26.txt

例10.26对上例中的学生,找出其中有不及格课程的学生及其学生号。   程序如下: main()    {float score[ ][4]={{60,70,80,90},{50,89,67,88},{34,78,90,66}};   float
www.eeworm.com/read/399843/7831320

txt 例14.3.txt

例14.3 求3个数中最大的数(分别考虑整数、实数、长整数的情况)。 #include int max(int a, int b, int c) //求3个整数中的最大者 { if (b>a) a=b; if (c>a) a=c; return a; } float max(float a,float b, float c) //求3个实数中