代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/157044/11743409
m metismex.m
% METISMEX : Mex-file interface to METIS
%
% /****************************************************************************
% * metismex.c
% * Public domain MATLAB CMEX-file to let you use METIS-4
www.eeworm.com/read/156874/11757652
txt 08-06.txt
%例8-6 给MATLAB 7的图形添加标题。
>> x = 0:.1:2;
>>y1=sin(x);
>>y2 = sin(x-0.25);
>>y3 = sin(x-0.5);
>> plot(x,y1,'-.b', x,y2,'--r*', x,y3,'-.gh')
>> title('There three lines')
>>
www.eeworm.com/read/156874/11758055
txt 10-41.txt
%例10-41 运行错误的处理。
%编制M文件如下。
function d=yunxingcuowu(a,b,c)
d=a/b;
if isinf(d) %对可能产生的inf值做出判断
sprintf('b should not be 0')
return
else
d=d*c;
end
%为了检验该程序,
www.eeworm.com/read/156868/11759584
m screensizecheck.m
function screensizecheck(SZ)
%SCREENSIZECHECK Check the current screen resolution.
% SCREENSIZECHECK([width height]) compares the current screen
% resolution to the width and height given (in
www.eeworm.com/read/156868/11759602
m versioncheck.m
function MATLABVERSION = versioncheck(x)
%VERSIONCHECK Check the Matlab Version
% MATLABVERSION = VERSIONCHECK(x) compares the number x to the
% version of Matlab on which the function is runn
www.eeworm.com/read/156868/11759692
m resizefcn.m
function newPos = resizefcn(oldPos,hFig,MATLABVER)
%RESIZEFCN Version dependent resize function.
% newPos = RESIZEFCN(oldPos,hFig,MATLABVER) provides the appropriate
% resizefcn callback for di
www.eeworm.com/read/156265/11815325
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/155843/11844267
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/155552/11863504
txt readme.txt
解压后剪切至<mark>matlab</mark>根目录下即可,使用时先将工作目录设为此文件夹,再于命令行中输入"main"即可
本工具箱可配合语音数据库使用,用于计算线性预测语音模型的参数,语音声调转换,语音自动解析分
解,语音语速变换及更改发音的重音,音量,清晰度等。配套图书《Speech Processing and Synthesis
Toolboxes》已经出版,翻译进行中
...