代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/155481/11868794
txt readme.txt
在matlab中,设置当前的目录为工作目录,在命令行中输入fpextractdemo,即可运行程序。
www.eeworm.com/read/258262/11874216
txt 说明.txt
╭════════════════╮
║ Matlab中国论坛下载说明 ║
╭══════┤ ├═══════╮
║ ║ http://www.labfans.com ║ ║
www.eeworm.com/read/257998/11896071
dat bookinfo.dat
[General Information]
书名=现代通信系统——使用MATLAB
作者=
页数=391
SS号=0
出版日期=
Vss号=80081765
www.eeworm.com/read/155122/11897111
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/155122/11897538
txt readme.txt
免费天地的计算机书籍配套磁盘服务
================================
本文件是从“免费天地”站点下载的。
(http://www.nease.net/~free)
---------------------------------------------------
与本磁盘配套的书籍的所有权益归原书作者和出版商所有。
我们提供配套磁盘只是为了
www.eeworm.com/read/155122/11897570
txt mmtool4.txt
精通MATLAB综合辅导与指南 (Mastering MATLAB: a comprehensive tutorial and reference)
作者: Duane Hanselman、Bruce Littlefield
ISBN: 7-5605-0933-9/TP 161
出版社: 西安交通大学出版社/Prentice Hall
1998年1月
内容简介:
本书介绍
www.eeworm.com/read/155109/11898548
m convert.m
% A little utility to convert .mat files back to Matlab 4 format
%
% Hordur Kvaran, 20.10.97
s=version;
if (str2num(s(1))>=5),
load ballsets;
save ballsets ISL ISM ISR MVL SST MVR PHL
www.eeworm.com/read/257588/11920204
m ex3_23.m
X=input('Enter X:');
E=zeros(size(X));
F=eye(size(X));
n=1;
while norm(F,1)>0
E=E+F;
F=F*X/n;
n=n+1;
end
E
xpm(X) %调用MATLAB矩阵指数函数求矩阵指数