代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/270994/11013410
cpp inputtrain.cpp
/***************************************************************************
inputtrain.cpp - description
-------------------
copyright
www.eeworm.com/read/270994/11013430
cpp neuron.cpp
/***************************************************************************
neuron.cpp - description
-------------------
copyright
www.eeworm.com/read/270994/11013463
h cherrymoya.h
/***************************************************************************
cherrymoya.h - description
-------------------
begin
www.eeworm.com/read/270994/11013472
cpp euler.cpp
/***************************************************************************
euler.cpp - description
-------------------
copyright
www.eeworm.com/read/270994/11013474
cpp basicneuron.cpp
/***************************************************************************
basicneuron.cpp - description
-------------------
copyright
www.eeworm.com/read/270994/11013488
h euler.h
/***************************************************************************
euler.h - description
-------------------
copyright
www.eeworm.com/read/270994/11013495
cpp fastneuron.cpp
/***************************************************************************
fastneuron.cpp - description
-------------------
begin
www.eeworm.com/read/416714/11017097
cpp limits.cpp
#include "stlexam.h"
#pragma hdrstop
/**************************************************************************
*
* limits.cpp - Example program of numeric limits class used for
*
www.eeworm.com/read/416704/11017516
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/416704/11017525
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