代码搜索:MATLAB LMD

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

代码结果 10,000
www.eeworm.com/read/476392/6759313

m exa19.m

t0= 0; tfinal =15; % time interval x0 = [0.5, 0]; % initial conditions % [t,x] = ode23('electsys', t0, tfinal, x0); % use with MATLAB 4 tspan = [t0, tfinal];
www.eeworm.com/read/476392/6759316

m exa18.m

t0= 0; tfinal = 3; % time interval x0 = [0, 0]; % initial conditions % [t,x] = ode23('mechsys', t0, tfinal, x0); % use with MATLAB 4 tspan = [t0, tfinal];
www.eeworm.com/read/476392/6759447

m dfpek.m

% State variable representation of the multimachine system % during fault. (for use with trstab) % Copyright (c) 1998 by H. Saadat function xdot = dfpek(t,x) global Pm f H E Y th ngg Pe=zeros(
www.eeworm.com/read/476392/6759468

m afpek.m

% State variable representation of the multimachine system % after fault. (for use with trstab) % % Copyright (C) 1998 H. Saadat function xdot = afpek(t,x) global Pm f H E Y th ngg Pe=zeros
www.eeworm.com/read/476392/6759519

m cctime.m

% This function Simulates the swing equation of a one-machine system % and returns the critical clearing time for stability. % % Copyrigth (C) 1998 H. Saadat % function cctime(Pm, E, V, X1, X2,
www.eeworm.com/read/265251/11272152

txt~ readme.txt~

Kalman filter toolbox written by Kevin Murphy, 1998. See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details. This version was last updated on 18 January 2003. Installation ------------
www.eeworm.com/read/265251/11272174

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/410656/11272794

readme

This distribution contains the KDTREE, KDTREEIDX and KDRANGEQUERY functions. Included are the source code files in kdtree/src, as well as precompiled mex files for the following systems: - Mac OS
www.eeworm.com/read/410020/11304010

txt code.txt

行程编码的matlab实现: I=imread('name.gif'); [m,n]=size(I); c=I(1,1);E(1,1)=1;E(1,2)=1;E(1,3)=c; t1=2; for k=1:m for j=1:n if(not(and(k==1,j==1))) if(not(I(k,j)==c))
www.eeworm.com/read/264420/11315728

m fil.m

function [out]=fil(in,f); % % Filters the data using a first order filter % % [out]=fil(in,f); % % f is a vector containing the filter constants % % Updated to use MATLAB's built in filter rou