| 查看: 1708 | 回复: 6 | ||
[求助]
Matlab 遗传工具箱安装后,出现警告,怎么办
|
|
我用的是matlab2008版,遗传工具箱是Sheffield遗传算法工具箱,但是在运行中出现警告,> Chrom=crtbp(5,10) Warning: Could not find an exact (case-sensitive) match for 'crtbp'. C:\Temp\toolbox\gatbx\CRTBP.m is a case-insensitive match and will be used instead. You can improve the performance of your code by using exact name matches and we therefore recommend that you update your usage accordingly. Alternatively, you can disable this warning using warning('off','MATLAB:dispatcher:InexactCaseMatch'). This warning will become an error in future releases. Warning: Could not find an exact (case-sensitive) match for 'crtbase'. C:\Temp\toolbox\gatbx\CRTBASE.m is a case-insensitive match and will be used instead. You can improve the performance of your code by using exact name matches and we therefore recommend that you update your usage accordingly. Alternatively, you can disable this warning using warning('off','MATLAB:dispatcher:InexactCaseMatch'). This warning will become an error in future releases. > In CRTBP at 53 Chrom = 1 0 0 0 1 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 0 0 0 0 1 我试过百度上搜索的各种方法,还是没法解决,求大虾指导迷津,偶感谢不尽 |
» 猜你喜欢
售SCI一区T0P文章,我:8O.55.1.O.54,科目全,可伽急
已经有3人回复
今天放榜吗?
已经有13人回复
filecode,4个jtjc了
已经有9人回复
今天基金会出结果吗?20260819
已经有8人回复
欢迎发来filecode的Mz6后的代码验证其规律
已经有115人回复
2027广东省杰青
已经有10人回复
朋友圈看到的
已经有8人回复
时间戳变了,能看出什么问题?
已经有14人回复
咱们一起用铁证分析2026国家社科基金中标与否
已经有30人回复
快农历七夕节了,轻松一下,男人悄悄话,女施主请不要进来。
已经有7人回复
» 本主题相关价值贴推荐,对您同样有帮助:
matlab论文分享(包括神经网络,遗传算法,粒子群算法)
已经有442人回复
matlab中是否可以用simulink实现遗传算法
已经有6人回复
如何MATLAB程序实现遗传算法
已经有11人回复
一个关于matlab的遗传算法的问题
已经有3人回复
【分享】matlab遗传算法工具箱与应用(雷英杰)【已搜索无重复】
已经有74人回复
Matlab人工神经网络工具箱的位置及使用
已经有5人回复
matlab工具箱中curve fitting中的图如何添加横纵坐标轴的名称
已经有5人回复
关于应用MATLAB工具箱BP网络编程问题
已经有1人回复
【求助】matlab 遗传算法工具箱绘图命令是什么?
已经有6人回复

libralibra
至尊木虫 (著名写手)
骠骑将军
- 程序强帖: 40
- 应助: 817 (博后)
- 金币: 12914.1
- 红花: 64
- 帖子: 2238
- 在线: 287.3小时
- 虫号: 696514
- 注册: 2009-02-05
- 专业: 计算机软件
【答案】应助回帖
感谢参与,应助指数 +1
ben_ladeng: 专家考核 2013-04-20 22:09:14
ben_ladeng: 专家考核 2013-04-20 22:09:14
|
Chrom=crtbp(5,10) Warning: Could not find an exact (case-sensitive) match for 'crtbp'. C:\Temp\toolbox\gatbx\CRTBP.m is a case-insensitive match and will be used instead. You can improve the performance of your code by using exact name matches and we therefore recommend that you update your usage accordingly. Alternatively, you can disable this warning using warning('off','MATLAB:dispatcher:InexactCaseMatch'). This warning will become an error in future releases. ============================================== matlab是大小写敏感的,找不到crtbp函数时,尝试使用CRTBP来代替.既然原工具箱的m文件是大写,你用大写就好了. Warning: Could not find an exact (case-sensitive) match for 'crtbase'. C:\Temp\toolbox\gatbx\CRTBASE.m is a case-insensitive match and will be used instead. You can improve the performance of your code by using exact name matches and we therefore recommend that you update your usage accordingly. Alternatively, you can disable this warning using warning('off','MATLAB:dispatcher:InexactCaseMatch'). This warning will become an error in future releases. ================================================= 同样的问题,不存在crtbase,改成CRTBASE即可 |

2楼2013-04-18 17:18:48
|
>> Chrom=CRTBP(5,10) Warning: Could not find an exact (case-sensitive) match for 'CRTBP'. C:\Temp\toolbox\gatbx\CRTBP.M is a case-insensitive match and will be used instead. You can improve the performance of your code by using exact name matches and we therefore recommend that you update your usage accordingly. Alternatively, you can disable this warning using warning('off','MATLAB:dispatcher:InexactCaseMatch'). This warning will become an error in future releases. Warning: Could not find an exact (case-sensitive) match for 'crtbase'. C:\Temp\toolbox\gatbx\CRTBASE.M is a case-insensitive match and will be used instead. You can improve the performance of your code by using exact name matches and we therefore recommend that you update your usage accordingly. Alternatively, you can disable this warning using warning('off','MATLAB:dispatcher:InexactCaseMatch'). This warning will become an error in future releases. > In CRTBP at 53 Chrom = 1 0 0 0 1 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 0 1 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 0 0 0 0 1 >> 按你说的做了,还是如此 |

3楼2013-04-18 18:28:13
libralibra
至尊木虫 (著名写手)
骠骑将军
- 程序强帖: 40
- 应助: 817 (博后)
- 金币: 12914.1
- 红花: 64
- 帖子: 2238
- 在线: 287.3小时
- 虫号: 696514
- 注册: 2009-02-05
- 专业: 计算机软件

4楼2013-04-19 00:07:53

5楼2013-04-19 09:03:33
libralibra
至尊木虫 (著名写手)
骠骑将军
- 程序强帖: 40
- 应助: 817 (博后)
- 金币: 12914.1
- 红花: 64
- 帖子: 2238
- 在线: 287.3小时
- 虫号: 696514
- 注册: 2009-02-05
- 专业: 计算机软件

6楼2013-04-19 15:54:36
doogoofeng
金虫 (正式写手)
- 应助: 1 (幼儿园)
- 金币: 758.4
- 散金: 1300
- 帖子: 414
- 在线: 496.4小时
- 虫号: 1958560
- 注册: 2012-08-27
- 性别: GG
- 专业: 机构学与机器人
7楼2013-05-26 07:48:17










回复此楼