代码搜索:MATLAB LMD

找到约 10,000 项符合「MATLAB LMD」的源代码

代码结果 10,000
www.eeworm.com/read/423896/10527847

m ex512.m

%《<mark>MATLAB</mark>及其在理工课程中的应用指南》第五章例5-1-2程序 % 单变量函数的极坐标绘图 % 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版 % theta=0:0.1:2*pi; % 产生极角向量,这语句的缺点是在3.1到2*pi之间不能覆盖。 % 改进的方法是用 theta=linspace(0,2*pi,N);省略N时自动把0到2*p ...
www.eeworm.com/read/423896/10527868

m ex21.m

%《MATLAB及其在理工课程中的应用指南》第二章第一节演示程序 % 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版 % format,echo on pause,x1=sqrt(5),x2=1.37,y=3/x2 pause,a=[1,2,3;4,5,6;7,8,9] pause,x=[-1.3 sqrt(3) (1+2+3)/5*4] pa
www.eeworm.com/read/160392/10536109

txt readme.txt

Readme file for HYSDEL ====================== HYSDEL Copyright (C) 1999-2002 Fabio D. Torrisi This file is part of HYSDEL. HYSDEL is free software; you can redistribute it and/or
www.eeworm.com/read/160256/10548328

m example12_1.m

t = 0:0.1:20; %绘制函数曲线,生成一个图形Figure plot(t,t.*sin(t)) get(gcf, 'Color') %gcf函数返回当前Figure的句柄,get得到当前Figure的颜色属性 ans =0.8000 0.8000 0.8000 %MATLAB中的所有颜色以RGB的形式存储,[1,1,1]是白色,[0,0,0]是黑色 %此时,可以用
www.eeworm.com/read/160256/10548472

m example8_8.m

%这里有一幅图像,如图8-27所示,其动态范围较小,而且较暗,反映在直方图上,见图8-28, %就是其%直方图所占据的灰度值范围比较窄,而且集中在低灰度值一边。为了使图像更清晰,我们采用直方图 %均衡化的方法来增加图像灰度动态范围,增强对比度。在<mark>MATLAB</mark>中,可以直接调用J=histeq (I,n) %函数来完成这项工作,其中I是原始图像矩阵,J是变换后所得的图像矩阵;用户可以指定均衡化 ...
www.eeworm.com/read/160243/10551335

m exa110701_pwelch.m

%------------------------------------------------------------------------- % exa1100701_pwelch.m, for example 11.7.1 and fig. 11.5.1(d) % to estimate the PSD of x(n) by Welch average; %------------
www.eeworm.com/read/160243/10551432

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/160240/10551660

c engwindemo.c

/* engwindemo.c * This is a simple program that illustrates how to call the MATLAB * Engine functions from a C program for windows * Copyright (c) 1996-1998 by The MathWorks, Inc. * All Rights
www.eeworm.com/read/352442/10552450

xml info.xml

12 Higher-Order Spectral Analysis Toolbox matlab $toolbox/matlab/general/matlabicon.gif
www.eeworm.com/read/423536/10552743

m ip_02_05.m

% MATLAB script for Illustrative Problem 5, Chapter 2. echo on % first part Sx1=[ones(1,32)]; Rx1=ifft(Sx1,32); % second part Sx2=[ones(1,16),zeros(1,224),ones(1,16)]; Rx2=ifft(Sx2,256); % pl