代码搜索:float

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

代码结果 10,000
www.eeworm.com/read/428233/8881936

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/428233/8881959

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
www.eeworm.com/read/428233/8881980

cpp 幂法.cpp

#include #include #define N 3 #define EPS 1e-6 #define KM 30 void PowerMethod(float *A) { float MaxValue(float *,int ); float U[N],V[N],r2,r1; float temp; int i,j,
www.eeworm.com/read/428233/8881984

cpp 最小二乘法.cpp

#include #include void main() { int i; float *a; float x[16]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}; float y[16]={4.00,6.40,8.00,8.80,9.22,9.50,9.70,9.86, 10.00,1
www.eeworm.com/read/428233/8881988

cpp 复化辛卜生公式.cpp

#include #include void main() { int i,n=2; float s; float f(float); float Simpson(float (*)(float),float,float,int ); for( i=0;i
www.eeworm.com/read/428233/8881992

cpp 牛顿值多项式.cpp

#include #define N 4 void Difference(float *x,float *y,int n) { float *f; int k,i; f =new float[(n*sizeof(float))]; for(k=1;k
www.eeworm.com/read/384270/8883836

c rand_rotation.c

#include #include "GraphicsGems.h" /*=========================================================================* * R A N D _ R O T A T I O N Author: Jim Arvo, 1991 *
www.eeworm.com/read/187002/8884694

c show_2d.c

#include void main(void) { int row, column; float table[3][5] = {{1.0, 2.0, 3.0, 4.0, 5.0}, {6.0, 7.0, 8.0, 9.0, 10.0}, {11.0
www.eeworm.com/read/187002/8884704

c show_3d.c

#include void main(void) { int row, column, table; float values[2][3][5] = { {{1.0, 2.0, 3.0, 4.0, 5.0}, {6.0, 7.0,
www.eeworm.com/read/187002/8884746

c huge_flt.c

#include #include void main (void) { int i; float huge *values; if ((values = (float huge *) halloc (17000, sizeof(float))) == NULL) printf