代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/278154/10564165
c rsolv.c
void rsolv(float **a, int n, float d[], float b[])
{
int i,j;
float sum;
b[n] /= d[n];
for (i=n-1;i>=1;i--) {
for (sum=0.0,j=i+1;j
www.eeworm.com/read/278154/10564169
c betacf.c
#include
#define MAXIT 100
#define EPS 3.0e-7
#define FPMIN 1.0e-30
float betacf(float a, float b, float x)
{
void nrerror(char error_text[]);
int m,m2;
float aa,c,d,del,h,qab,qa
www.eeworm.com/read/278154/10564172
c bcucof.c
void bcucof(float y[], float y1[], float y2[], float y12[], float d1, float d2,
float **c)
{
static int wt[16][16]=
{ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
-3
www.eeworm.com/read/278154/10564175
c rebin.c
void rebin(float rc, int nd, float r[], float xin[], float xi[])
{
int i,k=0;
float dr=0.0,xn=0.0,xo=0.0;
for (i=1;i dr)
dr += r[++k];
if (k > 1) xo=xi[k-1];
www.eeworm.com/read/278154/10564186
c convlv.c
#define NRANSI
#include "nrutil.h"
void convlv(float data[], unsigned long n, float respns[], unsigned long m,
int isign, float ans[])
{
void realft(float data[], unsigned long n, int isign);
www.eeworm.com/read/278154/10564200
c ludcmp.c
#include
#define NRANSI
#include "nrutil.h"
#define TINY 1.0e-20;
void ludcmp(float **a, int n, int *indx, float *d)
{
int i,imax,j,k;
float big,dum,sum,temp;
float *vv;
vv=v
www.eeworm.com/read/160151/10564206
_c fffff._c
#include
#include
#define PI 3.1415926
#define qq PI/8
float dataR[]={5,5,5,5,0,0,0,0,5,5,5,5,0,0,0,0};
float dataI[16],w[32];
void FFT(float dataR[],float dataI[])
{
www.eeworm.com/read/278154/10564219
c avevar.c
void avevar(float data[], unsigned long n, float *ave, float *var)
{
unsigned long j;
float s,ep;
for (*ave=0.0,j=1;j
www.eeworm.com/read/278154/10564252
c stoerm.c
#define NRANSI
#include "nrutil.h"
void stoerm(float y[], float d2y[], int nv, float xs, float htot, int nstep,
float yout[], void (*derivs)(float, float [], float []))
{
int i,n,neqns,nn;
www.eeworm.com/read/278154/10564258
c hpsort.c
void hpsort(unsigned long n, float ra[])
{
unsigned long i,ir,j,l;
float rra;
if (n < 2) return;
l=(n >> 1)+1;
ir=n;
for (;;) {
if (l > 1) {
rra=ra[--l];
} else {
rra=ra[i