代码搜索:MATLAB LMD

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

代码结果 10,000
www.eeworm.com/read/319335/13453933

c exm1_mex.c

/* * MATLAB Compiler: 2.2 * Date: Tue Jun 25 12:31:25 2002 * Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" * "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/319335/13454012

html b_d.html

Books
www.eeworm.com/read/318956/13465945

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/318141/13484980

txt readme.txt

Petri Net Toolbox for MATLAB ============================ The Petri Net Toolbox is a software tool for simulation, analysis and design of discrete event systems, based on Petri net models. This so
www.eeworm.com/read/317829/13496148

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/317775/13497481

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/315728/13537648

readme_octave

As of version 1.02 SegyMAT is intended to work with Octave version >2.1.64 If you have an older octave version installed you may need to : 1) change line (app 399) in ReadSegy from : if (outtrace==1
www.eeworm.com/read/314800/13559026

m exa090702.m

% ------------------------------------------------------------------- % exa090702.m, for example 9.7.2 and fig 9.7.2 % 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。 % 本程序给出的是连续小波变换的灰度图表示。 %--------------------
www.eeworm.com/read/313963/13577714

m ip_01_01.m

% MATLAB script for Illustrative Problem 1, Chapter 1. clear n=[-20:1:20]; x=abs(sinc(n/2)); stem(n,x);
www.eeworm.com/read/313963/13577762

m ip_04_04.m

% MATLAB script for Illustrative Problem 4.4. clear echo on ; a=[-10,-5,-4,-2,0,1,3,5,10]; for i=1:length(a)-1 y(i)=centroid('normal',a(i),a(i+1),0.001,0,1); echo off ; end