codes

所属分类:matlab编程
开发工具:matlab
文件大小:3645KB
下载次数:272
上传日期:2010-09-27 16:21:55
上 传 者zhouwei2017
说明:  分数阶系统的计算工具,解决一般解及动力学行为的问题
(tools for solving fractional-order systems)

文件列表:
codes\@fotf\bode.m (269, 2006-12-19)
codes\@fotf\display.m (647, 2006-12-19)
codes\@fotf\feedback.m (274, 2007-08-04)
codes\@fotf\fotf.m (352, 2006-10-15)
codes\@fotf\inv.m (56, 2007-08-04)
codes\@fotf\lsim.m (419, 2006-12-19)
codes\@fotf\minus.m (42, 2007-08-04)
codes\@fotf\mtimes.m (239, 2007-08-04)
codes\@fotf\nichols.m (86, 2006-12-19)
codes\@fotf\nyquist.m (86, 2006-12-19)
codes\@fotf\plus.m (277, 2007-08-04)
codes\@fotf\step.m (87, 2006-12-19)
codes\@fotf\uminus.m (60, 2007-08-04)
codes\@fotf\unique.m (343, 2007-08-04)
codes\@sym\compan.m (84, 2006-05-12)
codes\@sym\feedback.m (98, 2005-01-12)
codes\@sym\fseries.m (333, 2007-02-14)
codes\@sym\funm.m (527, 2006-12-18)
codes\@sym\hankel.m (207, 2007-08-04)
codes\@sym\lu.m (261, 2007-03-27)
codes\@sym\lyap.m (233, 2006-12-02)
codes\@sym\residue.m (509, 2006-05-11)
codes\@sym\vander.m (102, 2007-08-04)
codes\@tf\fotf.m (244, 2006-10-15)
codes\apolloeq.m (225, 2007-05-17)
codes\bass_pp.m (171, 2006-11-16)
codes\bvalues.m (76, 2006-11-16)
codes\bv_ric.m (94, 2006-11-16)
codes\c4eqbvp.m (91, 2006-11-16)
codes\c4fm.m (70, 2006-11-16)
codes\c4fsing.m (132, 2006-11-16)
codes\c4mdde3.mdl (11382, 2003-12-14)
codes\c4mimp.m (189, 2006-11-16)
codes\c4mloopa.mdl (21229, 2006-12-17)
codes\c4mmimo.mdl (14174, 2005-09-20)
codes\c4mmstep.mdl (16488, 2007-01-05)
codes\c4mrnd.mdl (23122, 2006-12-17)
codes\c4msf2.mdl (17477, 2007-05-17)
codes\c4mtimv.mdl (12957, 2005-09-20)
codes\c5fun3.m (124, 2007-05-19)
... ...

------------------------------------------------------------- ------------------------------------------------------------- PSOt, particle swarm optimization toolbox for matlab. May be distributed freely as long as none of the files are modified. Send suggestions to bkbirge@yahoo.com Updates will be posted periodically at the Mathworks User Contributed Files website (www.mathworks.com) under the Optimization category. To install: Extract into any directory you want but make sure the matlab path points to that directory and the subdirectories 'hiddenutils' and 'testfunctions'. Enjoy! - Brian Birge ------------------------------------------------------------- ------------------------------------------------------------- INFO Quick start: just type ... out = pso_Trelea_vectorized('f6',2) and watch it work! This is a PSO toolbox implementing Common, Clerc 1", and Trelea types along with an alpha version of tracking changing environments. It can search for min, max, or 'distance' of user developed cost function. Very easy to use and hack with reasonably good documentation (type help for any function and it should tell you what you need) and will take advantage of vectorized cost functions. It uses similar syntax to Matlab's optimization toolbox. Includes a suite of static and dynamic test functions. It also includes a dedicated PSO based neural network trainer for use with Mathwork's neural network toolbox. Run 'DemoPSOBehavior' to explore the various functions, options, and visualizations. Run 'demoPSOnet' to see a neural net trained with PSO (requires neural net toolbox). This toolbox is in constant development and I welcome suggestions. The main program 'pso_Trelea_vectorized.m' lists various papers you can look at in the comments. Usage ideas: to find a global min/max, to optimize training of neural nets, error topology change tracking, teaching PSO, investigate Emergence, tune control systems/filters, paradigm for multi-agent interaction, etc. ------------------------------------------------------------- ------------------------------------------------------------- Files included: ** in main directory: 0) ReadMe.txt - this file, duh 1) A Particle Swarm Optimization (PSO) Primer.pdf - powerpoint converted to pdf presentation explaining the very basics of PSO 2) DemoPSOBehavior.m - demo script, useful to see how the pso main function is called 3) goplotpso4demo.m - plotting routine called by the demo script, useful to see how custom plotting can be developed though this routine slows down the PSO a lot 4) goplotpso.m - default plotting routine used by pso algorithm 5) pso_Trelea_vectorized.m - main PSO algorithm function, implements Common, Trelea 1&2, Clerc 1", and an alpha version of tracking environmental changes. ** in 'hiddenutils' 1) forcerow, forcecol.m - utils to force a vector to be a row or column, superseded by Matlab 7 functions I believe but I think they are still called in the main algo 2) normmat.m - takes a matrix and reformats the data to fit between a new range, very flexible 3) linear_dyn, spiral_dyn.m - helpers for the dynamic test functions listed in the 'testfunctions' directory ** in 'testfunctions' A bunch of useful functions (mostly 2D) for testing. See help for each one for specifics. Here's a list of the names: Static test functions, minima don't change w.r.t. time/iteration: 1) Ackley 2) Alpine 3) DeJong_f2 4) DeJong_f3 5) DeJong_f4 6) Foxhole 7) Griewank 8) NDparabola 9) Rastrigin 10) Rosenbrock 11) Schaffer f6 12) Schaffer f6 modified (5 f6 functions translated from each other) 13) Tripod Dynamic test functions, minima/environment evolves over time (NOT iteration, though easily modifed to do so): 14) f6_bubbles_dyn 15) f6_linear_dyn 16) f6_spiral_dyn ** in 'nnet' (all these require Matlab's Neural Net toolbox) 1) demoPSOnet - standalone demo to show neural net training 2) trainpso - the neural net toolbox plugin, set net.trainFcn to this 3) pso_neteval - wrapper used by trainpso to call the main PSO optimizer, this is the cost function that PSO will optimize 4) goplotpso4net - default graphing plugin for trainpso, shows net architecture, relative weight indications, error, and PSO details on run

近期下载者

相关文件


收藏者