搜索:iter
找到约 9 项符合「iter」的查询结果
结果 9
https://www.eeworm.com/dl/665/434922.html
matlab例程
A demo for image segmentation using iter
A demo for image segmentation using iter
https://www.eeworm.com/dl/532/402273.html
书籍源码
c++模板源码中的第一章节iter
c++模板源码中的第一章节iter,方便你学习时参考,应该会对你有所帮助
https://www.eeworm.com/dl/652/199939.html
文章/文档
基于matlab的数值计算试验程序。equ_direct
基于matlab的数值计算试验程序。equ_direct,equ_iter,interpolation等
https://www.eeworm.com/dl/650/254418.html
人工智能/神经网络
本程序实际上是把模拟退火过程引入单纯形法来求多元函数的极值
本程序实际上是把模拟退火过程引入单纯形法来求多元函数的极值,和用模拟退火算法求旅行熵问题有许多不同。获得本程序后,需要自行编制程序调低温度temper,重置iter,以满足个人的不同应用需要。
https://www.eeworm.com/dl/518/384083.html
数值算法/人工智能
Batch version of the back-propagation algorithm. % Given a set of corresponding input-output pairs
Batch version of the back-propagation algorithm.
% Given a set of corresponding input-output pairs and an initial network
% [W1,W2,critvec,iter]=batbp(NetDef,W1,W2,PHI,Y,trparms) trains the
% network with backpropagation.
%
% The activation functions must be either linear or ...
https://www.eeworm.com/dl/666/375559.html
Delphi控件源码
用于无约束优化的鲍威尔优化方法
用于无约束优化的鲍威尔优化方法,
程序中参数解释如下://P:存放设计变量
//XI:存放两个线性无关的向量
//N:含有N各元素的一维实型数组,用于存储设计变量
//NP:整形变量,用于存储P与xi的维数
//FTOL:迭代精度
//FRET:输出参数,存放目标函数在找到的近似极小值点处的值
//ITER:迭代次数 ...
https://www.eeworm.com/dl/650/377003.html
人工智能/神经网络
function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent fo
function [U,center,result,w,obj_fcn]= fenlei(data)
[data_n,in_n] = size(data)
m= 2 % Exponent for U
max_iter = 100 % Max. iteration
min_impro =1e-5 % Min. improvement
c=3
[center, U, obj_fcn] = fcm(data, c)
for i=1:max_iter
if F(U)>0.98
break
else
w_new=eye(in_n,in_ ...
https://www.eeworm.com/dl/515621.html
源码
MATLAB fsolve求解非线性方程组源程序代码
对于非线性方程组F(X)=0,用fsolve函数求其数值解。fsolve函数的调用格式为:
X=fsolve('fun',X0,option)
其中X为返回的解,fun是用于定义需求解的非线性方程组的函数文件名,X0是求根过程的初值,option为最优化工具箱的选项设定。最优化工具箱提供了20多个选项,用户可以使用optimset命令将 ...