代码搜索:MATLAB LMD

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

代码结果 10,000
www.eeworm.com/read/478563/6709989

m ea708.m

% 《工程线性代数(MATLAB版)》第七章例题7.8程序ea708 % m1=1; m2=9; k1 = 4; k2=2; % 输入各原始参数 x0 = [1;0]; xd0 = [0;-1]; tf= 20; M = [m1,0;0,m2]; K = [k1+k2, -k2; -k2, k2]; % 构成参数矩阵 K0=inv(M)*K [u,L] = eig (K0
www.eeworm.com/read/478563/6709990

m ea352.m

% 《工程线性代数(MATLAB版)》第三章例题3.5.2程序ea352 % plot([0,3,4,2,0],[1,5,3,0,1]),hold on line([3,2],[5,0]) set(gcf,'color','w')
www.eeworm.com/read/478579/6710239

txt 打开程序方法.txt

1。将所有文件解压缩到一个文件夹下 2。在Matlab环境下,打开DPLResolutionCover.m, 用F5键运行,若系统提示是否改变当前路径,选 择“改变Matlab当前路径”项,即可进入程序界面
www.eeworm.com/read/478193/6721829

txt readme.txt

Second and Higher-Order Statistics based Multiple-Input-Multiple-Output System Blind Identification Matlab Code Readme file Communications and Signal Processing Laboratory ECE Department, Drexel
www.eeworm.com/read/477420/6734760

m generate_arb_waveform_tektronix.m

%AWG M-Code for communicating with an instrument. % % This is the machine generated representation of an instrument control % session using a device object. The instrument control session comp
www.eeworm.com/read/477455/6735975

m speedup3.m

function Speedup3 % Speedup3.m % 功能:比较具有相同功能的自定义函数与MATLAB内部函数的运行速度 % % 加快MATLAB执行程序的方法之三:尽量使用MATLAB内部函数(包括各种工具箱函数) % % Author: HUANG Huajiang % Copyright 2003 UNILAB Research Center, %
www.eeworm.com/read/477361/6742075

htm ofdm simulator.htm

OFDM Simulator
www.eeworm.com/read/476907/6754313

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/476907/6754361

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
www.eeworm.com/read/476392/6759310

m exa20.m

t0= 0; tfinal =5; % time interval x0 = [1, 0]; % initial conditions % [t,x] = ode23('pendulum', t0, tfinal, x0); % use with MATLAB 4 tspan = [t0, tfinal];