登录
首页 » c » matlab遗传算法的程序代码

matlab遗传算法的程序代码

于 2023-05-16 发布 文件大小:2.92 MB
0 62
下载积分: 2 下载次数: 1

代码说明:

这是一些关于遗传算法的程序及相关的学习资料,希望对大家的研究有所帮助,不足之处请多多包涵,学习,遗传算法是一种基于生物遗传的优化算法,目前应用较多

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

发表评论

0 个回复

  • BankSystem
    用c#实现模拟银行系统 控制台界面 实现取款 存款 之类的一些基本操作 (With c# console interface for analog banking system deposits, withdrawals and the like to achieve some of the basic operations)
    2020-09-18 21:17:53下载
    积分:1
  • SERIAL
    uart 驱动程序wince环境下的,MDD层没有修改,PDD根据硬件自行修改(the uart driver wince environment, MDD layer does not modify modify, PDD according to hardware)
    2012-10-26 14:47:34下载
    积分:1
  • T23825744rwth
    这是小波包程序,好不容易从网上下下的,希望对大家有用!可直接使用。 (Wavelet packet, and finally from the Internet under the hope that useful! Can be used directly.)
    2012-07-25 06:27:18下载
    积分:1
  • 2013
    基于单目相机和激光测距仪, 文章提出从一幅图像中识别出非合作目标物体上的矩形面,并提取出 4 个顶点坐标的特征提取方法,为位姿的测量提供必要的信息 提出以激光点为参考, 距离激光点最近的 4 条边 界为矩形面边界的判定准则,并根据激光点到直线的垂足和边界端点约束排除干扰线段 该方法能有效地判 定出矩形面且顶点定位准确,在空间机器人视觉伺服控制半物理仿真系统上得到了验证。(An approach to identi fying the rectangular plane of the object w i thout markers and extracting i t s ape- xes which are needed for pose measurement from an image is proposed in this paper. A cri terion is put forw ard that the edges w hich have the minimum distances around the laser point are regarded as the edges of the rec- tangular plane, and the interferent ial lines are eliminated according to the pedal between the laser point and the edge and two endpoints of the edge. The validity of the method is verified by experiments performed on a sem- i physical simulation system for visua- l serving cont rol of space robot s.)
    2013-01-17 10:42:19下载
    积分:1
  • Figure7.9
    This program to explain how we use openGl function
    2010-11-30 17:56:39下载
    积分:1
  • 12864
    12864液晶显示图像与文字的C51程序(12864 LCD image and text C51 program)
    2013-11-06 01:01:46下载
    积分:1
  • GC 垃圾回收算法
      =1,2垃圾回收算法:    托管堆:CLR要求的资源从托管堆分配,任何对象只要没有应用程序的根引用它,都会在某个时刻被垃圾回收器回收 基于代的机制,提高回收的性能,在程序的生命期中,新建的对象是新一代,而创建的比较早的对象是老一代,第0代是最近分配的对象,CLR 使用了0,1,2三代进行管理 =3 GC和调试GcAndDebug.cs =4本地资源终结(finalization)是CLR提供的一种机制,允许对象在垃圾回收器回收其内存之前执行一些得体的清理工作,任何包装了本地资源的类型都必须支持终结操作(实现一个命名为Finalize的方法)。GC判断一个对象是垃圾时,会调用对象的Finalize(实现的情况下),C#中使用~ClassName表示FinalizeIn most cases, you do not need to write classes that derive from the CriticalFinalizerObject class. The .NET Framework class library provides two classes, SafeHandle and CriticalHandle, that provide critical finalization functionality for handle resources. Furthermore, the .NET Framework provides a set of prewritten classes derived from the SafeHandle class, and this set is located in the Microsoft.Win32.SafeHandles namespace. These classes are designed to provide common functionality for supporting file and operating system handles. System.Runtime.ConstrainedExecution 下的 CriticalFinalizerObject 抽象对象,CLR特殊对待 System.Runtime.InteropServices下的派生抽象类 SafeHandle CriticalHandle 和SafeHandle只是引用计数的区别Microsoft.Win32.SafeHandles  SafeFileHandle,SafeRegistryHandle ,SafeWaitHandle... SafeProcessHandle SafeLibraryHandle SafeLocalMemHandle SafeThreadHandle等MSDN没有编写,但同样是处理这个问题的 类似的实现的不同类代表不同的资源类型,这么多的类似,主要是为了类型安全SafeHandle的作用:1、以前的IntPtr形式不够健壮,如在IntPtr赋值前可能抛出ThreadAbortException异常,这样托管代码将造成本地资源的泄露2、防止利用潜在的安全漏洞,一个线程访问一个本地资源,另一个线程释放该资源,通过引用计数实现 对托管资源只有在极少数情况下才使用终结器 终结器被调用的时刻:1、第0代满:2、显式调用GC.Collect3、Windows报告内存不足4、CLR卸载AppDomain5、CLR关闭 内部实现使用终结列表保留对象,通过这个GC进行处理, freachable队列 =Dispose终结器的调用时间由GC确定,调用者无法显式调用它Dispose提供了显式清理资源的能力 GCHandle WeakReference System.Runtime.CompilerServices.ConditionalWeakTable 加入时的是对象的WeakReference,因此可能会回收,但可以确保只要key存在,value也是存在的 任何大于85000字节的对象被自动认为是大对象,大对象在大对象堆中分配 ==大量资源GCpublic static void AddMemoryPressure(Int64 bytesAllocated);   public static void RemoveMemoryPressure(Int64 bytesAllocated);提示GC实际需要消耗的内存,然后GC监视内存压力,压力变大时,强制回收 System.Runtime.InteropServices  HandleCollector 数量有限的本地资源 MemoryFailPoint在需要大量内存前可以先检查是否可以使用这么大的内存 GC的监视代码形式: GC.GetTotalMemory GC.CollectionCountPerMon.exe系统性能监视工具CLR Profiler工具FUSLOGVW.execlrver.exeSvcTraceViewer.exe
    2012-12-16下载
    积分:1
  • c++实现示波器
    c++实现示波器,非常好用,用起来不错,精度什么的都很高
    2022-04-07 07:54:13下载
    积分:1
  • TEA5767_C51
    说明:  用到飞利浦的TEA5767的收音机模块,SP3767和TEA5767完全兼容 TEA5767采用I2C或者三线接口控制,我是用的I2C,单片机用STC89C52,带1K EEPROM,可以掉电存台,1602LCD显示,这里只给了TEA5767的控制程序, TEA5767读写数据都是5个字节,其中PLL参数14位.(Philips TEA5767 use of the radio module, SP3767 and TEA5767 fully compatible with TEA5767 used I2C or three-wire interface control, that I am using the I2C, single-chip with STC89C52, with 1K EEPROM, can be kept down to Taiwan, 1602LCD show here TEA5767 only to the control procedures, TEA5767 to read and write data is 5 bytes, which PLL parameters 14.)
    2008-12-07 00:01:21下载
    积分:1
  • ExampleCode_ADC_AD7091R-2-4-8
    AD7091R官方参考驱动程序,和大家分享,一起学习(AD7091R official reference driver, to share with you)
    2021-04-23 22:08:47下载
    积分:1
  • 696518资源总数
  • 105895会员总数
  • 18今日下载