-
FIR
用matlab结合窗函数法、等波纹设计法实现FIR滤波器(Combined with matlab window function method, such as corrugated FIR filter design method)
- 2013-07-21 22:02:27下载
- 积分:1
-
shape_context
对Shape Context算法提出者的论文算法的实现(The implementation of the Shape Context Algorithm)
- 2009-05-20 10:10:42下载
- 积分:1
-
filter
说明: 基于matlab 的信号处理方面的程序实现,包括幅频特性,滤波器的设计等(These are program examples about signal and system based on matlab )
- 2011-03-31 00:17:08下载
- 积分:1
-
HW3
a cart and pole. The inverted pendulum is a classic problem in dynamics and control theory and is widely used as a benchmark for testing control algorithms. In this report
- 2012-12-30 17:02:19下载
- 积分:1
-
sigan
利用matlab/simulink中simmechanics组件创建的平面四杆机构模型仿真文件(Four-bar linkage model simulation file using matlab/simulink in the simmechanics components of the plane created)
- 2013-05-11 10:41:56下载
- 积分:1
-
analogCom2
analog communication AM
- 2010-01-08 19:38:19下载
- 积分:1
-
shzhfx
数值分析课程设计,内附MATLAB源码和word,用三次样条插值设计中英文签名,双三次做改进;
采用交互式界面进行操作,用鼠标点击获取名字大致的数据点
三次样条插值算法:可产生二阶光滑度,即二阶导数连续签名图样(Numerical analysis of curriculum design, enclosing the MATLAB source code and the word, using cubic spline interpolation design in English and Chinese signatures, double the three to do to improve using an interactive interface to operate with a mouse click to obtain the name of the data points roughly cubic spline interpolation algorithm: can generate second-order smoothness, that is, a continuous second derivative sign pattern)
- 2010-01-12 13:16:31下载
- 积分:1
-
mysusan
Matlab下的SUSAN角点检测算法,数字图象处理(Matlab under SUSAN corner detection algorithm, digital image processing)
- 2007-01-25 15:22:16下载
- 积分:1
-
Untitled4
这是用实施镶边效果这是一个分数延迟线,作为构建块。基本上镶边效果延迟实现不同时间acording一个低频控制信号。(This is the implementation of the flanger effect is a fraction of the delay line, as building blocks. Basically, the flanger effect delay to different time acording to a low-frequency control signal.)
- 2012-05-22 14:54:49下载
- 积分:1
-
Blocks
clc
close all
clear all
I=imread( desert.jpg )
[r c]=size(I)
bs=16 Block Size (8x8)
nob=(r/bs)*(c/bs) Total number of 8x8 Blocks
Dividing the image into 8x8 Blocks
kk=0
for i=1:(r/bs)
for j=1:(c/bs)
Block(:,:,kk+j)=I((bs*(i-1)+1:bs*(i-1)+bs),(bs*(j-1)+1:bs*(j-1)+bs))
end
kk=kk+(r/bs)
end
Accessing individual Blocks
figure imshow(Block(:,9,1)) This shows u the fist 8x8 Block in a figure window
figure imshow(Block(:,:,2))
- 2013-03-17 15:01:05下载
- 积分:1