-
quzao
说明: 用小波分析和傅立叶变换进行信号噪声处理,并画图进行比较(Wavelet analysis and Fourier transform for signal noise processing, and drawing comparison)
- 2010-04-21 21:59:35下载
- 积分:1
-
hechengdizhenjilu
说明: 合成地震记录的小程序 请大家互相学习 (Small synthetic seismogram program please learn from each other)
- 2010-04-28 10:17:13下载
- 积分:1
-
huigui
回归算法,输出回归方程系数,平方和,剩余平方和等。(Regression algorithm, the output coefficient of the regression equation, sum of squares, residual sum of squares and so on.)
- 2011-05-03 00:59:15下载
- 积分:1
-
MATLAB_math_datasheet
matlab数学手册,包括了矩阵计算,数理统计等方面常用函数和函数说明(matlab mathematics manuals, including a matrix calculation, mathematical statistics and other commonly used functions and function description)
- 2010-07-20 11:46:36下载
- 积分:1
-
sun_position
太阳位置计算,计算太阳角度,高度角,方位角,真太阳时间(Sun position)
- 2009-12-28 01:04:16下载
- 积分:1
-
101474-220951-1-PB
说明: Power System Stability for the Islanding Operation of Micro Grids
- 2019-03-15 18:23:04下载
- 积分:1
-
lle
说明: 局部线性嵌入算法的matlab代码,改算法是流形学习中的一个算法,目的是将高维流形空间映射到低维嵌入空间。可用于非线性高维数据的降维(matlab code of Local linear embedding algorithm )
- 2011-03-12 14:37:28下载
- 积分:1
-
matlabword
matlab编程时需要用到的常见函数的用法及作用(usage and the role of the common functions needed in the Matlab programming)
- 2012-04-10 17:23:23下载
- 积分:1
-
Resenje_Pan_Tompkins_QRS
Digital signal processing, this script implements the Pan Tompkins method for QRS detection
- 2011-05-21 00:41:32下载
- 积分: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