代码搜索:pso
找到约 1,652 项符合「pso」的源代码
代码结果 1,652
www.eeworm.com/read/154529/7144996
pso
www.eeworm.com/read/262145/11604169
pso
%%####################################################################
%%#### Particle swarm optimization
%%#### With linkage operator
%%#### Deepak devicharan july 2003
%%########################
www.eeworm.com/read/292107/8376950
dsw pso.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/292107/8376952
cpp pso.cpp
#include
using namespace std;
//随机数定义
#define rdint(i) (rand()%(int)(i))
#define rdft() (float)((double)rdint(16384)/(16383.0))
#define rnd(a,b) (rdint((int)(b)-(int)(a)+1)+(int)(a))
www.eeworm.com/read/292107/8376954
dsp pso.dsp
# Microsoft Developer Studio Project File - Name="PSO" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/292107/8376956
plg pso.plg
Build Log
--------------------Configuration: PSO - Win32 Debug--------------------
Command Lines
Creating temporary file "D:\DOCUME~1\ADMINI~1\
www.eeworm.com/read/292107/8376958
ncb pso.ncb
www.eeworm.com/read/292107/8376960
opt pso.opt
www.eeworm.com/read/391635/8392874
m pso.m
clc;
clear;
close all;
wmax=0.9;
wmin=0;
itmax=50;
c1=2;
c2=2;
for iter=1:itmax
W(iter)=wmax-((wmax-wmin)/itmax)*iter;
end;
a=-1;
b=2;
N=100;
D=2;
m=0.1;
n=3;
tcl=0.05;
f='x.*s
www.eeworm.com/read/391333/8408374
m pso.m
function [OUT,varargout]=PSO(structure)
D=3;
rand('state',sum(100*clock));
if nargin < 1
error('Not enough arguments.');
end
% PSO PARAMETERS
VRmin=ones(D,1)*-20;
VRmax=ones(