代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/359101/10165924
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/359101/10165926
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/359101/10165927
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/359101/10165934
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/359067/10167209
cpp z.cpp
#include "stdio.h"
float czl(int n,float x1,float *px,float *py);
void main(void)
{
float x1,y1;
int n;
float *p1,*p2;
float x[10]={1,2,3,4,5,6,7};
float y[10]={1,1.414214,1.732051,2,2.236068
www.eeworm.com/read/163251/10168456
cpp simple_sigmoid.cpp
/*
nn-utility (Provides neural networking utilities for c++ programmers)
Copyright (C) 2003 Panayiotis Thomakos
This library is free software; you can redistribute it and/or
modi
www.eeworm.com/read/163251/10168486
cpp sigmoid_example.cpp
/*
nn-utility (Provides neural networking utilities for c++ programmers)
Copyright (C) 2003 Panayiotis Thomakos
This library is free software; you can redistribute it and/or
modi
www.eeworm.com/read/163101/10175129
h graph4.h
//图类结构体定义与相关操作graph4.h
typedef struct
{char *data;
int *visited;
float **edge;
int max,size;
}Graph;
//初始化图
void SetGraph(Graph *G,int n)
{int i,j;
G->data=new char[n];
G->visited=new
www.eeworm.com/read/358694/10181742
c jm98b.c
/*
98年全国大学生数学建模竞赛B题"水灾巡视问题"模拟退火算法。
这是一个推销员问题,本题有53个点,所有可能性大约为exp(53),目前没有好方法求出精确解,既然求不出精确解,我们使用模拟退火法求出一个较优解,将所有结点编号为1到53,1到53的排列就是系统的结构,结构的变化规则是:从1到53的排列中随机选取一个子排列,将其反转或将其移至另一处,能量E自然是路径总长度。具体算法描述如下: ...
www.eeworm.com/read/358575/10184624
java tcharge.java
package javabean;
public class TCharge {
public TCharge(){
}
private String chargeCode;
private String chargeName;
private float chargeMoney;
public String getChargeCode() {
r