代码搜索:matlab、人工免疫
找到约 10,000 项符合「matlab、人工免疫」的源代码
代码结果 10,000
www.eeworm.com/read/156529/11793913
txt mm5.txt
Mastering MATLAB 5: a comprehensive tutorial and reference
作者: Duane Hanselman、Bruce Littlefield
ISBN: 0-13-858366-8
出版社: Prentice Hall
1998年
内容简介: 《精通MATLAB综合辅导与指南》一书的最新版
www.eeworm.com/read/156528/11794843
m contents.m
% FastICA for Matlab 7.x and 6.x
% Version 2.5, October 19 2005
% Copyright (c) Hugo G鋠ert, Jarmo Hurri, Jaakko S鋜el
www.eeworm.com/read/156528/11795239
m readme.m
readme
%2006.3.15
盲源分离系统使用说明
1.把ICA文件夹拷贝到MATLAB的work文件夹里面
2.启动MATLAB,选择Current Directory进入ICA文件夹
3.在Command Window中输入ica,回车就可以看到系统界面了
4.产生数据:
5.加载数据:点击“加载数据”按钮,在加载数据对话框中输入混合信号变量名,
再点确定,即可在混
www.eeworm.com/read/345494/11812530
m ex0404.m
%例4-4 通过MATLAB函数获取多维数组的属性
A = cat(4, [9 2; 6 5], [7 1; 8 4]);
size(A) %获取数组A的尺寸属性
ndims(A) %获取数组A的维度属性
whos %显示当前工作区中各个变量的名称、尺寸、内存占用等信息
www.eeworm.com/read/345494/11812622
m ex0707.m
%例7-7 字符串的查找
a='Welcome to MATLAB!';
b='Welcome,Sir!';
c='Welcome';
ab=strcat(a,b)
strfind(ab,c) %strfind中长字符串在前,否则返回空数组
strfind(c,ab)
findstr(ab,c) %findstr中两个字符串位置可变
findstr(c,ab)
strmatch(