代码搜索:精度提升
找到约 3,114 项符合「精度提升」的源代码
代码结果 3,114
www.eeworm.com/read/184977/9062074
h chap5.h
#include
#include
#include
#include
int const max_step=100; //定义一个常数,代表最大循环步长
//在本次程序能达到的显示精度之下,100作为最大循环步长已经完全足够了!
class
www.eeworm.com/read/377058/9296096
cpp zhengtaifenweishu.cpp
#include
#include
#include
double pnorm(double q) //公式精度:最大相对误差1.2*e-8 q:上侧概率 返回值:分位数
{double u,p,y;
if(q==0.5) return 0.0;
p=(q0.99
www.eeworm.com/read/365698/9850951
m combinetraprl.m
function [I,step] = CombineTraprl(f,a,b,eps)
%f 被积函数
%a,b 积分上下限
%eps 精度
%I 积分结果
%step 积分的子区间数
if(nargin ==3)
eps=1.0e-4;
end
n=1;
h=(b-a)/2;
I1=0;
I2=(subs(sym(f),findsym(sym
www.eeworm.com/read/277808/10603368
m de.m
function [Pb,trace]=DE
D=30;%维数
NP=25;%NP为种群规模----
F=0.5;%交叉因子
CR=0.1;%交叉概率
eps=1e-9;%精度
gen_max=800;%最大进化代数
trace=zeros(gen_max,2);
bounds=100*ones(D,2);
bounds(:,1)=-1*bounds(:,1);
rng=(bo
www.eeworm.com/read/349409/10828838
plg demo.plg
礦ision3 Build Log
Project:
E:\学习\程序\等精度频率计Mini51板方案\mcu\Demo.uv2
Project File Date: 07/18/2008
Output:
www.eeworm.com/read/272719/10946553
txt 神经网络实现程序.txt
clear all
clc
inputNums=3; %输入层节点
outputNums=3; %输出层节点
hideNums=10; %隐层节点数
maxcount=20000; %最大迭代次数
samplenum=3; %一个计数器,无意义
precision=0.001; %预设精度
yyy=1.3; %yyy是帮助网络加速走出平坦区
alpha=0.01; %学习率
www.eeworm.com/read/396256/6971637
m combinetraprl.m
function [I,step] = CombineTraprl(f,a,b,eps)
%f 被积函数
%a,b 积分上下限
%eps 精度
%I 积分结果
%step 积分的子区间数
if(nargin ==3)
eps=1.0e-4;
end
n=1;
h=(b-a)/2;
I1=0;
I2=(subs(sym(f),findsym(sym
www.eeworm.com/read/445076/7109295
m combinetraprl.m
function [I,step] = CombineTraprl(f,a,b,eps)
%f 被积函数
%a,b 积分上下限
%eps 精度
%I 积分结果
%step 积分的子区间数
if(nargin ==3)
eps=1.0e-4;
end
n=1;
h=(b-a)/2;
I1=0;
I2=(subs(sym(f),findsym(sym
www.eeworm.com/read/460961/7236912
cpp jacobi.cpp
#include
#include
#include
#include
const double EPS=1E-10; //运算精度
double **D2Array(int row) //动态申请row+1行、row+1列的二维数组
{
double *Array=new double[(r
www.eeworm.com/read/443342/7634258
m combinetraprl.m
function [I,step] = CombineTraprl(f,a,b,eps)
%f 被积函数
%a,b 积分上下限
%eps 精度
%I 积分结果
%step 积分的子区间数
if(nargin ==3)
eps=1.0e-4;
end
n=1;
h=(b-a)/2;
I1=0;
I2=(subs(sym(f),findsym(sym