代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/291067/6302926
m getrestl.m
function outList = getrestl(inList)
% RECVAR, A package for new data structures in Matlab.
% (c) FOA 1998. See the file rvright.m for copyright notice.
%
% function ouList = getrestl(inList)
%
% Ret
www.eeworm.com/read/291067/6302960
m islastl.m
function B = islastl(list)
% RECVAR, A package for new data structures in Matlab.
% (c) FOA 1998. See the file rvright.m for copyright notice.
%
% function B = islastl(list)
%
% Returns 1 if list co
www.eeworm.com/read/291067/6302967
m sizem.m
function sizeOut = sizem(multiMatrix)
% RECVAR, A package for new data types in Matlab 4.
% (c) FOA 1997. See the file rvright.m for copyright notice.
%
% function sizeOut = sizem(multiMatrix)
%
% R
www.eeworm.com/read/291067/6302980
m existr.m
function B = existr(recordvar, fieldname)
% RECVAR, A package for new data types in Matlab 4.
% (c) FOA 1997. See the file rvright.m for copyright notice.
%
% function B = existr(recordvar, fieldnam
www.eeworm.com/read/291067/6303001
readme
RECVAR, A package for new data types in Matlab.
(c) FOA 2000. See the file rvright.m for copyright notice.
This package can be used both under Matlab 4 and 5.
For Matlab 4, this package currently c
www.eeworm.com/read/291067/6303006
m dftopm.m
function B = dftopm(N,M)
%DFTOPM generates a DFT operator matrix B such that the discrete 1D-Fourier
% transform of a spatial vector x is given by X = B*x. The DFT is defined
% in the same way as
www.eeworm.com/read/291067/6303017
m recdir.m
function M = recdir(recvar)
% RECVAR, A package for new data types in Matlab 4.
% (c) FOA 1997. See the file rvright.m for copyright notice.
%
% function M = recdir(recvar)
%
% Returns a Matlab matr
www.eeworm.com/read/291067/6303084
m helpd.m
function helpdbt(word)
%HELPD Displays Matlab helptext with "more on".
% * DBT, A Matlab Toolbox for Radar Signal Processing *
% (c) FOA 1994-2000. See the file dbtright.m for copyright notice.
www.eeworm.com/read/326342/6330939
m p0312.m
I=imread('blood1.tif');
imshow(I);
f=double(I); % 数据类型转换,MATLAB不支持图像的无符号整型的计算
g=fft2(f); % 傅立叶变换
g=fftshift(g); % 转换数据矩阵
[M,N]=size(g);
nn=2; % 二阶巴特沃斯(Butterworth)高通滤波器
www.eeworm.com/read/257423/6356493
m c5ex5.m
% Illustration of the symbolic toolbox of MATLAB
% to implement the delay theorem
%
syms t
x0 = sym('Heaviside(t-0)');
x1 = sym('Heaviside(t-1)');
x2 = sym('Heaviside(t-2)');
x3 = sym('Heaviside(t-3)'