-
winsvm
一些MATLAB SVM的分类器程序winsvm,希望可以对大家有用(very good)
- 2011-04-20 20:10:12下载
- 积分:1
-
GUI
介绍matlab界面设计方面的内容,对于matlab设计是很有用的(Introduction matlab interface design aspects, is useful for the design matlab)
- 2011-09-18 10:29:15下载
- 积分:1
-
MATLAB_Device_Blocks_DS-51771E
user_manual for matlab simulink toolbox dsPIC microcontrollers
- 2013-03-27 13:09:28下载
- 积分:1
-
reducing_cycles
reduces cycles in bipartite graph
- 2010-12-28 22:52:35下载
- 积分:1
-
fftview
做信号处理的时候经常会用到FFT,而MATLAB自带的FFT只能变换出一列系数,想做成频谱图还要自己加一部分,自己写了一个小程序,输入原始信号和采样率,可以画出标准的幅值谱和功率谱。(Do signal processing is often used when the FFT, and FFT MATLAB own transformation from a coefficient of only wanted to make Canada part of the spectrum but also their own, to write a small program, the input original signal and the sampling rate can be Draw a standard amplitude spectrum and power spectrum.)
- 2011-02-01 12:07:10下载
- 积分:1
-
HTW0.4src
Hide That Window!,可对指定窗口进行隐藏、修改透明度、修改标题、查看窗口类等(Hide That Window !, available for the specified window is hidden, change transparency, modify the title, the viewing window etc.)
- 2014-12-28 14:33:25下载
- 积分:1
-
MATLAB
关于紫外光语音通信系统的大气信道的仿真程序(MATLAB实现)(UV-voice communications systems on the atmospheric channel simulation program (MATLAB implementation))
- 2009-10-20 08:57:13下载
- 积分:1
-
simpleekf
说明: 本matlab程序实现了扩展kalman滤波,对一个随机生成的正弦信号进行EKF滤波,并画图展现对比。(This Matlab source code is the demo of Extended Kalman Filter,It s filter for randomly sine singal and plot the result。)
- 2010-03-30 11:01:26下载
- 积分:1
-
HW1_Part1
vào đ ay mà loafd matlab code
- 2013-09-23 21:18:48下载
- 积分: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