FIC8120 方案 Multi-ICE
上传时间: 2016-11-19
上传用户:ANRAN
This a simple genetic algorithm implementation where the evaluation function takes positive values only and the fitness of an individual is the same as the value of the objective function
标签: implementation evaluation algorithm function
上传时间: 2016-11-24
上传用户:kelimu
A Function Optimizer using Simple Genetic Algorithm developed from the Pascal SGA code
标签: Algorithm Optimizer developed Function
上传时间: 2014-12-20
上传用户:ANRAN
it is a simulation about ML synchronization algorithm in OFDM systems,you can slao see a function picture in its output,that s useful for a beginner
标签: synchronization simulation algorithm function
上传时间: 2013-12-17
上传用户:yulg
Multi-Agent采购系统的遗传优化研究
标签: Multi-Agent 采购
上传时间: 2014-01-24
上传用户:13160677563
// chebysheve outlier detection // this function is used to detect the abnormal value among a set of data // input: // delta: a set of data // flag: discribe which data is already known as outlier // p: restrict level // output: // double[] door : byyond which the data may be considered as a outlier // door[0]: the upperdoor // door[1]: the lowerdoor
标签: chebysheve detection abnormal function
上传时间: 2013-11-30
上传用户:13517191407
I often need a simple function generator. Just to generate a certain frequency. After all the years I ve worked with electronics, I still haven t got me one. Even though I need it now and then, I just couldn t seem to justify the cost of one. So, standard solution - build one yourself. I designed a simple sinewave generator based on a Analog Devices AD9832 chip. It will generate a sinewave from 0.005 to 12 MHz in 0.005 Hz steps. That s pretty good, and definitely good enough for me ! But while waiting for the AD9832 chip to arrive, I came up with a very simple version of the DDS synth, using just the 2313 and a resistor network.
标签: frequency generator function generate
上传时间: 2013-12-17
上传用户:thesk123
第13讲 智能Agent及多Agent系统 Chapter 13 Intelligent Agent & Multi-Agent Systems 徐从富 浙江大学人工智能研究所
标签: Agent Intelligent Multi-Agent Chapter
上传时间: 2016-12-09
上传用户:lx9076
capture frames in mobile 6.0 you can edit raw data with callback function
标签: callback function capture frames
上传时间: 2013-11-26
上传用户:pkkkkp
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_n) center1=sum(center)/c a=center1(1)./center1 deta=center-center1(ones(c,1),:) w=sqrt(sum(deta.^2)).*a for j=1:in_n w_new(j,j)=w(j) end data1=data*w_new [center, U, obj_fcn] = fcm(data1, c) center=center./w(ones(c,1),:) obj_fcn=obj_fcn/sum(w.^2) end end display(i) result=zeros(1,data_n) U_=max(U) for i=1:data_n for j=1:c if U(j,i)==U_(i) result(i)=j continue end end end
标签: data function Exponent obj_fcn
上传时间: 2013-12-18
上传用户:ynzfm