代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/278154/10564542

c select.c

#define SWAP(a,b) temp=(a);(a)=(b);(b)=temp; float select(unsigned long k, unsigned long n, float arr[]) { unsigned long i,ir,j,l,mid; float a,temp; l=1; ir=n; for (;;) { if (ir
www.eeworm.com/read/278154/10564549

c lubksb.c

void lubksb(float **a, int n, int *indx, float b[]) { int i,ii=0,ip,j; float sum; for (i=1;i
www.eeworm.com/read/278154/10564556

c sort3.c

#define NRANSI #include "nrutil.h" void sort3(unsigned long n, float ra[], float rb[], float rc[]) { void indexx(unsigned long n, float arr[], unsigned long indx[]); unsigned long j,*iwksp;
www.eeworm.com/read/278154/10564601

c lfit.c

#define NRANSI #include "nrutil.h" void lfit(float x[], float y[], float sig[], int ndat, float a[], int ia[], int ma, float **covar, float *chisq, void (*funcs)(float, float [], int)) { void
www.eeworm.com/read/278154/10564604

c cntab2.c

#include #define NRANSI #include "nrutil.h" #define TINY 1.0e-30 void cntab2(int **nn, int ni, int nj, float *h, float *hx, float *hy, float *hygx, float *hxgy, float *uygx, float *ux
www.eeworm.com/read/278154/10564644

c chebft.c

#include #define NRANSI #include "nrutil.h" #define PI 3.141592653589793 void chebft(float a, float b, float c[], int n, float (*func)(float)) { int k,j; float fac,bpa,bma,*f;
www.eeworm.com/read/278154/10564657

c svdfit.c

#define NRANSI #include "nrutil.h" #define TOL 1.0e-5 void svdfit(float x[], float y[], float sig[], int ndata, float a[], int ma, float **u, float **v, float w[], float *chisq, void (*funcs)
www.eeworm.com/read/278154/10564668

c fit.c

#include #define NRANSI #include "nrutil.h" void fit(float x[], float y[], int ndata, float sig[], int mwt, float *a, float *b, float *siga, float *sigb, float *chi2, float *q) { fl
www.eeworm.com/read/278154/10564682

c cholsl.c

void cholsl(float **a, int n, float p[], float b[], float x[]) { int i,k; float sum; for (i=1;i=1;k--) sum -= a[i][k]*x[k]; x[i]=sum/p[i]; } for (i=
www.eeworm.com/read/278154/10564696

c wt1.c

void wt1(float a[], unsigned long n, int isign, void (*wtstep)(float [], unsigned long, int)) { unsigned long nn; if (n < 4) return; if (isign >= 0) { for (nn=n;nn>=4;nn>>=1) (*wtstep)(a