代码搜索:MATLAB LMD

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

代码结果 10,000
www.eeworm.com/read/465793/7046128

txt readme.txt

Kalman filter toolbox written by Kevin Murphy, 1998. See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details. Installation ------------ 1. Install KPMtools from http://www.ai.mit.edu/~mu
www.eeworm.com/read/172061/7074842

m rand.m

%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵 %RAND Uniformly distributed random numbers. % RAND(N) is an N-by-N matrix with random entries, chosen from % a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/247232/7075012

dat bookinfo.dat

[General Information] 书名=MATLAB通信仿真及应用实例详解 作者= 页数=415 SS号=0 出版日期=
www.eeworm.com/read/152244/7139433

txt readme.txt

Notes on using MATLAB .M files accompanying the text Discrete-Time Control Problems using MATLAB and the Control Systems Toolbox by J. H. Chow, D. K. Fre
www.eeworm.com/read/299984/7139948

m reorderdset.m

function a = reorderdset(a,L) % This is just needed to execute the below command outside the @dataset % directory, as it fails there in some Matlab versions a(L,:) = a; return
www.eeworm.com/read/201151/7149350

txt readme.txt

matlab程序编写的一个三维雷达跟踪粒子滤波器,超强!!!
www.eeworm.com/read/464351/7164851

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/464101/7169702

m m4ustp.m

% M-file for the second part of Project 4 on linearized analysis % in Chapter 6 to obtain the unit step response of the motor % transfer function, numG/denG. % It can only be used after the tra
www.eeworm.com/read/463748/7175982

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/463748/7176009

m ip_04_04.m

% MATLAB script for Illustrative Problem 4.4. 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