代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/370521/9597826
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/174295/9597898
txt readme.txt
1.将MATLAB打开,从MATLAB里打开文件名为codemian3并运行
2.codemian3运行完毕后再将文件名为systems的SIMULINK模型文件打开运行
www.eeworm.com/read/174295/9598117
txt readme.txt
1.将MATLAB打开,从MATLAB里打开文件名为codemian1并运行
2.codemian运行完毕后再将文件名为qpsk的SIMULINK模型文件打开运行
www.eeworm.com/read/173927/9629847
txt readme.txt
The Finite Element Method Using MATLAB, 2nd Edition
System requirements:
Windows 95, 98, or NT 4.0
Minimum - 640x480 256 color display
Recommended - 800x600 16-bit or higher color display
12
www.eeworm.com/read/173659/9644760
m hc721.m
%《数字信号处理教程——MATLAB释义与实现》第七章例7.2.1程序hc721
% 幅频特性与符幅特性的区别
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
clear
b=[-1,2,4,2,-1];a=1; % 给定滤波器系数向量
[H,w]=freqz(b,a); % 求频率特性
subplot(2,2,1),p
www.eeworm.com/read/173659/9644860
m myditfft.m
function y=myditfft(x)
%《数字信号处理教程——MATLAB释义与实现》
% 用MATLAB语言编写的基2 DIT FFT子程序
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
% y=myditfft(x)
% ------------------------------------------------------------
% 本程序对输入序
www.eeworm.com/read/173659/9644966
m fgp832.m
%《数字信号处理教程——MATLAB释义与实现》第八章图8.3.2生成程序fgp832
% s平面到z平面的指数变换映射
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
a=[-2:0.1:0]; % 设定实部分度
b=[-3:0.2:3]; % 设定虚部分度
[X,Y]=meshgrid(a,b); %
www.eeworm.com/read/173140/9670768
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/173140/9670813
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 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
www.eeworm.com/read/368517/9691234
cs program.cs
using System;
using System.Collections.Generic;
using System.Text;
// MathWorks assemblies that ship with Builder for .NET
// and should be registered in Global Assembly Cache
using MathWorks.M