登录
首页 » matlab » 针对各类分数阶混沌系统进行同步

针对各类分数阶混沌系统进行同步

于 2018-08-24 发布 文件大小:2KB
0 184
下载积分: 1 下载次数: 23

代码说明:

  针对各类分数阶混沌系统进行同步,数值仿真结果证明系统的稳定性(Numerical simulations show that the system is stable for all kinds of fractional order chaotic systems.)

文件列表:

Zip, 0 , 2018-08-24
Zip\fderiv.m, 1137 , 2010-01-06
Zip\fractional_chaos.m, 3260 , 2017-03-22
Zip\rigid1.m, 1307 , 2017-03-22

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

发表评论

0 个回复

  • MCU_1908
    针对CMOS 图像传感器输出的Bayer 格式的图像数据, 利用TI 公司的TMS320DM642 数字信号处理器的专用视频端口,可以实现图像捕获、数据传输的无缝连接的特点, 构建了以DM642 为核心的图像实时处理系统。在DM642 中采用两种通用方法(双线性插值、边缘检测) 和文中提出的信号相关的方法, 将从Bayer 公司的CMOS 图像传感器所捕获的8 位Bayer 格式图像数据, 转换为24 位RGB 格式彩色图像数据, 并通过PSNR(信噪比) 和NCD(归一化彩色差异规范) 两种评估方法进行检测。从实验结果可以看出文中提出的方法相对于通用方法提高了图像的信噪比, 锐化图像的边缘, 减少了图像高频信息的错误像素的数量, 提高视觉质量。(Bayer TMS320DM642)
    2020-12-12 11:59:16下载
    积分:1
  • extract
    该程序是对输入的数字图片进行特征提取,以得到图片对应的向量,从而为下一步的识别提供帮助。(The program is to input the number of picture feature extraction in order to obtain the corresponding vector images, so as to identify the next step to help.)
    2008-03-16 15:38:44下载
    积分:1
  • 基于模板匹配的另一种人脸识别的算法
    基于模板匹配的另一种人脸识别的算法,很实用,利用肤色建模来建立人脸皮肤模型(Another based on template matching algorithm for face recognition, very practical, using skin color modeling to create a human face skin model)
    2020-06-27 10:00:02下载
    积分:1
  • PolygonNesting
    文章讲述了一种基于多边形的优化排样方法,结合不规则件特征确定了零件排放的最佳位置,给出了排料规则库的设计,通过排料空间的边界组织和边界更新,形成了新的排样空间。 (Article describes a polygon-based layout optimization method combined with irregular parts on characters of the part the best place to discharge given row of the design rule base material, the border by nesting space organization and boundary updates, formed The new layout space.)
    2010-06-20 15:50:00下载
    积分:1
  • resampling
    说明:  粒子滤波改进的重采样程序,Performs the resampling stage of the SIR (Improved particle filter resampling procedure, Performs the resampling stage of the SIR)
    2008-10-19 22:03:49下载
    积分:1
  • yunfeng
    该函数用于简单背景下运动目标检测和轮廓提取,虽为简易实现,但效果不错,可根据个人需要添加代码(This function for a simple moving object detection and contour extraction, although it is easy to achieve, but good results can be based on individual need to add code)
    2008-05-26 17:27:36下载
    积分:1
  • vtk
    有关vtk的一些pdf资料,包括: 1.和国外一些朋友讨论VTK的一些经验的整理 2.基于VTK的医学三维可视化分析系统 3.基于VTK库的医学图像处理子系统设计和实现 4.可视化工具VTK技术研究(Some of the vtk pdf information, including: 1. And some foreign friends to discuss some of the experiences of the order VTK 2. VTK-based visualization of the medical system 3. VTK library based on medical image processing subsystem design and implementation 4. visualization tools VTK Technology)
    2008-07-30 23:26:39下载
    积分:1
  • CompassMATLAB
    demo中基本上整理了目前常用的所有边缘检测算子,并添加了自定义的frei-chen、kirsch、direcedge、PrewittCompass、RobinsonCompass边缘检测算子function函数。此外,还有Ruzon罗盘算子的matlab实现程序,能对灰度图像的边缘加以检测。(demo, basically compiled all the commonly used edge detection operator, and add a custom frei-chen, kirsch, direcedge, PrewittCompass, RobinsonCompass edge detection operator function function. In addition, there Ruzon compass operator procedures matlab realize, can be gray-scale image edge detection.)
    2013-07-11 10:23:35下载
    积分:1
  • EDLines 快速直线检测算子
    EDLines是一种快速直线检测算子,2012年在ICCV上提出,也是目前处理直线检测最快的算法之一,该算法包含三个步骤:(1)边缘提取:利用Edge Drawing (ED)算法[28,29]从灰度图像中提取边缘片段;(2)线段检测:利用最小二乘法提取直线段;(3)线段确认:遵循Helmholtz定律,从已提取的直线段中摒弃虚假线段。EDLines算法的优越性得益于Edge Drawing (ED)算法能够从灰度图像中准确、快速、稳定地提取出光滑、完整的边缘片段。Edge Drawing (ED)算法包含以下步骤: (1)采用size=5*5,σ=1的高斯核对灰度图像进行平滑滤波,去除噪声; (2)采用一种常用的梯度算子,如Prewitt、Sobel或Scharr等计算平滑后图像中每个像素点的梯度幅度和梯度方向; (3)将梯度图中邻域内幅度最大的像素点标记为锚点,这些锚点成为图像边缘点(edge elements)的概率很大; (4)将相邻的锚点连接成边缘线。从一个锚点起始,ED利用相邻像素的梯度幅度和方向在梯度为最大值的锚点之间游走。 (Edge Drawing (ED) is our recently-proposed, novel, fast edge detection algorithm. What makes ED stand out the existing edge detectors, e.g., Canny, is the following: While the other edge detectors give out a binary edge image as output, where the etected edge pixels are usually independent, discontinuous entities ED produces a set of edge segments, which are clean, contiguous, i.e., connected, chains of edge pixels. Thus, while the output of the other edge detectors requires urther processing to generate potential object boundaries, which may not even be possible or result in inaccuracies ED not only produces perfectly connected object boundaries by default, but it also achieves this in blazing speed compared to other edge detector.)
    2021-03-22 16:29:16下载
    积分:1
  • SaliencyToolbox
    ITTI视觉显著性检测MATLAB工具箱可用于检测图像视觉显著性(ITTI visual saliency detection MATLAB toolbox can be used to detect visual saliency of images)
    2020-11-06 20:49:50下载
    积分:1
  • 696518资源总数
  • 104349会员总数
  • 32今日下载