代码搜索:精度可调

找到约 3,652 项符合「精度可调」的源代码

代码结果 3,652
www.eeworm.com/read/442550/7649422

m min_f.m

function y = min_F(x,s_k) %MIN_F Summary of this function goes here % Detailed explanation goes here % 一维搜索,黄金分割法 a=0; b=50; l=0.000001;%终止精度 s_temp=s_k.'; x1=a+0.382*(b-a); x2=a+b-x1; whil
www.eeworm.com/read/442550/7649428

asv desend.asv

format long %Scaled fixed point format, with 15 digits for double; 8 digits for single. x=[0,0]; x=input('请输入初始值[x0,x1]='); s=input('请输入初始精度s='); g=D_F(x); g=g.';%转置为列向量; while(norm(g)>s)
www.eeworm.com/read/442550/7649429

asv min_f.asv

function y = min_F(x,s_k) %MIN_F Summary of this function goes here % Detailed explanation goes here % 一维搜索,黄金分割法 a=0; b=50; l=0.000001;%终止精度 s_temp=s_k.'; x1=a+0.382*(b-a); x2=a+b-x1; whil
www.eeworm.com/read/439056/7717411

m daoru.m

clear all; %关闭警告消息 nntwarn off; %隐含层神经元个数 NUMBER=9; %NUMBER2=4; %学习速率 lr=0.04; %误差精度 err_goal=0.01; %最大迭代次数 max_epoch=20000; %训练数据集数量 TRAINNUM=20; load X.txt load T.txt %输入数据集 % X
www.eeworm.com/read/435844/7782871

m exm052_3.m

%exm052_3.m %(1)产生符号函数 syms a x; f=a*sin(x)+5; %(2)符号变量置换 f1=subs(f,'sin(x)',sym('y')) % %(3)符号常数置换 f2=subs(f,{a,x},{2,sym(pi/3)}) % %(4)双精度数值置换 f3=sub
www.eeworm.com/read/435061/7798673

m slope_adapt_filter.m

function phasef=slope_adapt_filter(phase,xsize,ysize) %基于局部频率估计的斜坡自适应滤波(利用FFT+CZT法提高了局部频率估计的精度) windowsizei=13;%估计窗方位向尺寸 windowsizej=13; pwsizei=13;%滤波窗方位向尺寸 pwsizej=13; wini=windowsizei; wi=(w
www.eeworm.com/read/197958/7960992

m solve.m

function varargout = solve(varargin) %求各种类型方程组的解析解, %当找不到解析解时,将自动寻求原点附近的一个近似解, 并可达任意精度. %用法 % solve('方程1','方程2',...,'方程N','变量1','变量2',...,'变量M') %SOLVE Symbolic solution of algebraic equation
www.eeworm.com/read/196814/8058947

m solve.m

function varargout = solve(varargin) %求各种类型方程组的解析解, %当找不到解析解时,将自动寻求原点附近的一个近似解, 并可达任意精度. %用法 % solve('方程1','方程2',...,'方程N','变量1','变量2',...,'变量M') %SOLVE Symbolic solution of algebraic equation
www.eeworm.com/read/244945/12829769

m solve.m

function varargout = solve(varargin) %求各种类型方程组的解析解, %当找不到解析解时,将自动寻求原点附近的一个近似解, 并可达任意精度. %用法 % solve('方程1','方程2',...,'方程N','变量1','变量2',...,'变量M') %SOLVE Symbolic solution of algebraic equation
www.eeworm.com/read/330766/12869923

cpp hejunhua.cpp

#include #include float x1,x2; float d1,d2; float h1,h2; float a,e,score; void JieFp(); void JieF(); void JieA(); void JieX2(); void main() { printf("请输入x1,x2,精度