-
DFASimplificationAnimprovedmethod
算法分析;DFA化简算法的一种改进方法;pdf版;学报(Algorithm analysis DFA Simplification of an improved method pdf version Technology)
- 2010-10-30 20:23:09下载
- 积分:1
-
S-PID
针对正弦信号的PID响应进行控制,系统采用基于S函数的simlink仿真。(In view of the sine signal response to the PID control, the system adopts simlink simulation based on S function.)
- 2016-08-21 18:06:40下载
- 积分:1
-
43680547A_study_of_IEEE_802.16a_OFDM-PHY_Baseband
一篇基于物理层MIMO OFDM 的研究论文,是大家入门的好东西(A MIMO OFDM based physical layer research papers, is a good thing we started)
- 2009-11-24 16:38:03下载
- 积分:1
-
star-cascade-master
this is the start casecade program.
it is very useful for beginer.
- 2014-09-26 10:53:31下载
- 积分:1
-
mag_response
this programs finds the magnitude and phase response of a second order resonator or any other system
- 2013-11-09 22:43:46下载
- 积分:1
-
Prony-Toolbox
Prony的matlab工具箱,很详细,使用它可以对信号进行prony变换和分析。(Prony matlab toolbox,the signal can be prony transformation and analysis.)
- 2020-06-30 15:00:01下载
- 积分:1
-
eucacion-de-manning
this code is usefull to calcule the hydraulics properties for a given cross section or batymetric. Also plot the manning properties vs de hydraulic depth
- 2013-11-08 23:50:47下载
- 积分:1
-
DMSV
该程序提供了基于支持向量的判别分析的matlab实现,可应用于模式分类(Discriminant Analysis via Support Vectors)
- 2015-02-02 08:00:59下载
- 积分:1
-
jnkkfdfq
包含优化类的几个简单示例程序,合成孔径雷达(SAR)目标成像仿真,主要是基于mtlab的程序,计算加权加速度,包括面积、周长、矩形度、伸长度,D-S证据理论数据融合。( Optimization class contains several simple sample programs, Synthetic Aperture Radar (SAR) imaging simulation target, Mainly based on the mtlab procedures, Weighted acceleration, Including the area, perimeter, rectangular, elongation, D-S evidence theory data fusion.)
- 2016-03-03 19:42:34下载
- 积分: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