登录
首页 » Others » 基于粒子群算法的PID控制器优化

基于粒子群算法的PID控制器优化

于 2020-12-09 发布
0 201
下载积分: 1 下载次数: 1

代码说明:

使用粒子群算法对PID控制器进行优化,迭代次数设置越大优化越好

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • steam94授权
    一般都比较能用的94授权软件 支持Win7 Win8 Win10请管理员运行
    2020-12-12下载
    积分:1
  • 《MATLAB时频分析技术及其应用》源序代码
    葛哲学 陈仲生 主编的《MATLAB时频分析技术及其应用》源程序代码,有时频分析工具箱和小波分析工具箱的详细使用方法,并以信号、图像、医学、雷达、故障诊断等领域为例展示了如何应用Matlab的时频分析工具来解决工程中的实际问题,时频分析入门的好帮手。
    2021-05-06下载
    积分:1
  • python,Opencv实现的车牌识别定位及分割代码
    python配合Opencv库 实现的车牌识别定位及分割代码:1、将采集到的彩色车牌图像转换成灰度图2、灰度化的图像利用高斯平滑处理后,再对其进行中直滤波3、使用Sobel算子对图像进行边缘检测4、对二值化的图像进行腐蚀,膨胀,开运算,闭运算的形态学组合变换5、对形态学变换后的图像进行轮廓查找,根据车牌的长宽比提取车牌可作为Python,opencv及车牌识别技术的学习用。
    2020-11-28下载
    积分:1
  • 模糊层次分析法软件-好软件
    模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法模糊层次分析法
    2020-11-29下载
    积分:1
  • 决策树ID3算法实验_数据集car_databases
    用python编写的决策树ID3算法,运用了Car-Evaluation的例子。BUG较少,综合了网上的优秀代码,并进一步形成自己的代码。代码基本有注释,风格良好,能够很快看懂。内含有比较规范的报告文档,包含所有流程图,说明图,以及文档风格绝对不错,无需更改,建议下载!该算法所测试的数据集如下(已经打包在内,并已经生成xls格式,方便直接使用):已知:UCI标准数据集Car-Evaluation,定义了汽车性价比的4 个类别;求:用ID3算法建立Car-Evaluation的属性描述决策树Car-Evaluation训练数据集文件:1. car_databases.pdf
    2020-12-11下载
    积分:1
  • 稀疏自码深度学习的Matlab实现
    稀疏自编码深度学习的Matlab实现,sparse Auto coding,Matlab codetrain, m/7% CS294A/CS294W Programming Assignment Starter CodeInstructions%%%This file contains code that helps you get started ontheprogramming assignment. You will need to complete thecode in sampleIMAgEsml sparseAutoencoder Cost m and computeNumericalGradientml For the purpose of completing the assignment, you domot need tochange the code in this filecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencodtrain.m∥%%========%6% STEP 0: Here we provide the relevant parameters valuesthat willl allow your sparse autoencoder to get good filters; youdo not need to9 change the parameters belowvisibleSize =8*8; number of input unitshiddensize 25number of hidden unitssparsity Param =0.01; desired average activation ofthe hidden units7 (This was denoted by the greek alpharho, which looks like a lower-case pcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod4/57train.,m∥in the lecture notes)1 ambda=0.0001%o weight decay parameterbeta 3%o weight of sparsity penalty term%%==:79 STEP 1: Implement sampleIMAGESAfter implementing sampleIMAGES, the display_networkcommand shouldfo display a random sample of 200 patches from the datasetpatches sampleIMAgES;display_network(patches(:, randi(size(patches, 2), 204, 1)), 8)%为产生一个204维的列向量,每一维的值为0~10000curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod5/57train.m/v%中的随机数,说明是随机取204个 patch来显示%o Obtain random parameters thetatheta= initializeParameters ( hiddenSize, visibleSize)%%=============三三三三====================================97 STEP 2: Implement sparseAutoencoder CostYou can implement all of the components (squared errorcost, weight decay termsparsity penalty) in the cost function at once, butit may be easier to do%o it step-by-step and run gradient checking (see STEP3 after each stepWecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod6/57train. m vb suggest implementing the sparseAutoencoder Cost functionusing the following steps(a) Implement forward propagation in your neural networland implement the%squared error term of the cost function. Implementbackpropagation tocompute the derivatives. Then (using lambda=beta=(run gradient Checking%to verify that the calculations corresponding tothe squared error costterm are correctcurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod7/57train. m vl(b) Add in the weight decay term (in both the cost funcand the derivativecalculations), then re-run Gradient Checking toverify correctnessl (c) Add in the sparsity penalty term, then re-run gradiChecking toverify correctnessFeel free to change the training settings when debuggingyour%o code. (For example, reducing the training set sizecurer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod8/57train m vl/number of hidden units may make your code run fasterand setting betaand/or lambda to zero may be helpful for debuggingHowever, in yourfinal submission of the visualized weights, please useparameters web gave in Step 0 abovecoS七grad]sparseAutoencoderCost(theta, visibleSize,hiddensize, lambda,sparsityParam, beta,patches)二〓二二二二二二二〓二〓二〓二〓=二====〓=curer:YiBinYUyuyibintony@163.com,WuYiUniversityning, MATLAB Code for Sparse Autoencod9/57train.m vlll96% STeP 3: Gradient CheckingHint: If you are debugging your code, performing gradienchecking on smaller modelsand smaller training sets (e. g, using only 10 trainingexamples and 1-2 hiddenunits) may speed things upl First, lets make sure your numerical gradient computationis correct for a%o simple function. After you have implemented computeNumerun the followingcheckNumericalGradientocurer:YiBinYUyuyibintony@163.com,WuYiUniversityDeep Learning, MATLAB Code for Sparse Autoencode10/57
    2020-12-05下载
    积分:1
  • python满分大作业 打地鼠
    python满分大作业打地鼠,用graphics库编写,内含文档。
    2020-07-02下载
    积分:1
  • FWM 耦合方 matlab代码
    FWM耦合方程matlab代码 3个耦合方程的数值解 其中包括泵浦波 信号波 闲频波
    2020-11-28下载
    积分:1
  • 学生成绩管理论文
    学生成绩管理系统的论文,学生不用去买黑心卖家的论文了
    2020-11-29下载
    积分:1
  • 篇带matlab源码的MIMO论文!对理解MIMO仿真很有意义
    一篇带matlab源码的MIMO论文!对理解MIMO仿真很有意义
    2021-05-07下载
    积分:1
  • 696518资源总数
  • 104569会员总数
  • 24今日下载