登录
首页 » Others » MATLAByuchekongzhi

MATLAByuchekongzhi

于 2008-08-22 发布 文件大小:1333KB
0 147
下载积分: 1 下载次数: 98

代码说明:

  针对工业控制过程中的实际问题,对神经网络预测控制进行了深入的研究,提出 了两种新的智能预测控制算法。并结合混合仿真平台,以平台中非线性单变量与多变量系 统为控制对象,将部分算法应用于实际控制中。(For industrial control in the process of practical problems, neural network predictive control of an in-depth research, we propose two new intelligent predictive control algorithm. Combined with hybrid simulation platform to platform non-linear single-variable and multi-variable system for the control of objects, some of the actual control algorithm is applied.)

文件列表:

基于MATLAB混合仿真平台的智能预测控制及其应用研究.kdh

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

发表评论

0 个回复

  • histo
    二维图像直方图的绘制程序,基于MATLAB(Two-dimensional image histogram mapping procedures, based on MATLAB)
    2008-01-24 16:45:56下载
    积分:1
  • ABC
    1.The content is too simple 2.Is not a sourcecode or document
    2012-04-06 00:09:55下载
    积分:1
  • playexcel
    通过matlab创建excel,并通过matlab的命令窗口实现在excel中画图。(Created by matlab in excel, and drawing by the Matlab command window in excel.)
    2012-06-01 10:28:28下载
    积分:1
  • MATLAB-GUI
    matlab GUI设计,内容全面,通俗易懂,(matlab GUI design, comprehensive, easy to understand,)
    2012-11-25 18:48:59下载
    积分:1
  • shuzituxiangchuli
    用matlab编程工具,编写具有操作界面的应用程序,通过菜单、对话框,选项框等界面控制,对算法进行演示。需要在应用系统中实现的算法及功能包括: 1、图像增强算法 (1)灰度线形变换:亮度及对比度可以调节(通过控制参数的改变,能够实时预览变化结果); (2)直方图均衡:可在界面上对比均衡前后的效果。 2、图像变换算法 (3)对一幅彩色图像进行DCT变换和反变换,对比结果和原图; (4)仅保留左上角16X16的DCT系数,进行反变换,计算结果图的信噪比SNR。 3、图像分割算法 (5)采用最优阈值算法对灰度图像进行分割; (6)用Canny算法对灰度图像进行边缘检测; (7)用hough变换,检测边缘图像中的直线,并用不同颜色将检测出的直线叠加显示到原图像上。 (Preparation of a user interface with Matlab programming tools, applications, menus, dialog boxes, option boxes and other interface control, the algorithm demo. Algorithms and functions that need to be achieved in the application system including: 1, the image enhancement algorithm (1) gray linear transformation: the brightness and contrast can be adjusted (by controlling the change of the parameters, it is possible to real-time preview changes result) (2) Histogram equalization : contrast before and after equalization effect in the interface. 2, an image transformation algorithm (3) for a color image DCT transform and inverse transform, comparing the results and the original (4) to retain only the upper left corner of 16x16 DCT coefficient, the inverse transform, the signal-to-noise ratio SNR calculation results of FIG. . 3, image segmentation algorithm (5) The optimal threshold algorithm to gray-scale image segmentation (6) Canny algorithm for edge detection of gray-scale images ()
    2013-05-20 22:20:50下载
    积分:1
  • 负荷预测
    说明:  对电力系统的负荷进行预测用BP神经网络实现(BP neural network for forecasting power system load)
    2020-10-20 22:27:30下载
    积分:1
  • Designing_Filters_for_Software_Defined_Radio
    软件无线电的滤波器设计的相关程序,内带说明(Filter Design Software Radio)
    2010-08-10 09:25:12下载
    积分:1
  • Signal
    Finding the Peaks in ECG and PPG using the turning point algorithm
    2021-03-22 15:09:16下载
    积分:1
  • Coordinate-conversion
    坐标转换(四参数) [row col]=size(source) for i=1:row u(i)=source(i,2) v(i)=source(i,3) x(i)=source(i,4) y(i)=source(i,5) B(2*i-1,1)=1 B(2*i-1,2)=0 B(2*i-1,3)=u(i) B(2*i-1,4)=-v(i) B(2*i,1)=0 B(2*i,2)=1 B(2*i,3)=v(i) B(2*i,4)=u(i) L(2*i-1,1)=x(i) L(2*i,1)=y(i) end X=inv(B *B)*(B *L) Txy=[X(1) X(2)] xzjz(1,1)=X(3) xzjz(1,2)=-X(4) xzjz(2,1)=X(4) xzjz(2,2)=X(3) [row1 col1]=size(target) for i=1:row1 u1(i)=target(i,2) v1(i)=target(i,3) d=[u1(i) v1(i)] md=Txy+xzjz*d end end (Coordinate conversion: [row col]=size(source) for i=1:row u(i)=source(i,2) v(i)=source(i,3) x(i)=source(i,4) y(i)=source(i,5) B(2*i-1,1)=1 B(2*i-1,2)=0 B(2*i-1,3)=u(i) B(2*i-1,4)=-v(i) B(2*i,1)=0 B(2*i,2)=1 B(2*i,3)=v(i) B(2*i,4)=u(i) L(2*i-1,1)=x(i) L(2*i,1)=y(i) end X=inv(B *B)*(B *L) Txy=[X(1) X(2)] xzjz(1,1)=X(3) xzjz(1,2)=-X(4) xzjz(2,1)=X(4) xzjz(2,2)=X(3) [row1 col1]=size(target) for i=1:row1 u1(i)=target(i,2) v1(i)=target(i,3) d=[u1(i) v1(i)] md=Txy+xzjz*d end end )
    2014-12-12 19:02:28下载
    积分:1
  • qea
    用matlab编写的最基本的量子进化算法,运行main函数即可。(Using matlab basic quantum evolutionary algorithm, you can run the main function.)
    2015-03-20 14:04:29下载
    积分:1
  • 696518资源总数
  • 106148会员总数
  • 10今日下载