搜索: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
下载 134
·
查看 1088
https://www.eeworm.com/dl/532/402273.html 书籍源码

c++模板源码中的第一章节iter

c++模板源码中的第一章节iter,方便你学习时参考,应该会对你有所帮助
下载 29
·
查看 1066
https://www.eeworm.com/dl/652/199939.html 文章/文档

基于matlab的数值计算试验程序。equ_direct

基于matlab的数值计算试验程序。equ_direct,equ_iter,interpolation等
下载 183
·
查看 1114
https://www.eeworm.com/dl/654/307870.html 数据结构

看雪教程

看雪教程,适合有志投身于信息安全产业的ITer。强烈推荐
下载 91
·
查看 1044
https://www.eeworm.com/dl/650/254418.html 人工智能/神经网络

本程序实际上是把模拟退火过程引入单纯形法来求多元函数的极值

本程序实际上是把模拟退火过程引入单纯形法来求多元函数的极值,和用模拟退火算法求旅行熵问题有许多不同。获得本程序后,需要自行编制程序调低温度temper,重置iter,以满足个人的不同应用需要。
下载 164
·
查看 1073
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 ...
下载 163
·
查看 1057
https://www.eeworm.com/dl/666/375559.html Delphi控件源码

用于无约束优化的鲍威尔优化方法

用于无约束优化的鲍威尔优化方法, 程序中参数解释如下://P:存放设计变量 //XI:存放两个线性无关的向量 //N:含有N各元素的一维实型数组,用于存储设计变量 //NP:整形变量,用于存储P与xi的维数 //FTOL:迭代精度 //FRET:输出参数,存放目标函数在找到的近似极小值点处的值 //ITER:迭代次数 ...
下载 119
·
查看 1060
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_ ...
下载 132
·
查看 1073
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命令将 ...
查看 64