代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
www.eeworm.com/read/349646/10810012
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/275066/10837337
m fudaopu2.m
%最小相位信号法求复倒谱
clear
b=[1,-0.5];
a=[1,-0.8];
N=32;
xn=impz(b,a,N); %生成最小相位序列
n=-N/2:1:N/2-1;
u=sign(n)+1; %u序列
Xk=fft(xn,N); %取傅立叶变换
Xkbar1=real(log(Xk)); %取对
www.eeworm.com/read/419769/10838893
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/274278/10879184
readme
-----------------------------------------------
--- Document for MATLAB interface of LIBSVM ---
-----------------------------------------------
Table of Contents
=================
- Introduction
- I
www.eeworm.com/read/274182/10885915
txt description.txt
Summary: Simple face and eye detection
MATLAB Release: R13
Description: You can use this codes for face detection based on color segmentation and eye region detection.
www.eeworm.com/read/273093/10927600
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/272953/10935477
m exn842a.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第八章例8-4-2程序a
% Smith阻抗圆图的绘制(复数绘图方法)
% 西安电子科技大学出版社出版 陈怀琛编著 2007年7月
%
% 直接用复数绘制Smith圆图
p = logspace(-2,2);
% q=logspace(-2,1,10);
q = [eps,0.05,0.1,0.2,0.5,1,2,5,10
www.eeworm.com/read/272953/10935541
m exn513.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-1-3程序
% 曲线族的绘制
% 西安电子科技大学出版社出版 陈怀琛编著 2007年5月
clear,clf
x=-2:0.1:2; % 给定x数组,确定范围及取点密度
subplot(1,2,1) % 分两个画面绘图
for c=-3:3
plot(x,x.^3+c*x),ho
www.eeworm.com/read/272953/10935543
m exn532t.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-3-2
% 用平行截面分析空间曲面
% 西安电子科技大学出版社出版 陈怀琛编著 2007年5月
%
clear, n1=input('n1= '); syms k,
for n=1:n1 s1(n)=symsum(1/k^2,1,n);end,
plot(1:n,double(s1)),hold on
for
www.eeworm.com/read/272953/10935545
m exn532a.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-3-2a
% 用符号数学求数列前有限项的和
% 西安电子科技大学出版社出版 陈怀琛编著 2007年7月
%
clear, close all
n1=input('n1= '); syms k,
for n=1:n1 s1(n)=symsum(1/k^2,1,n);end,
plot(1:n,double(s1