-
liu
直方图均衡化和彩色图像处理的matlab实现(Histogram equalization and color image processing matlab implementation)
- 2013-12-03 18:37:31下载
- 积分:1
-
Polynomial
polynomial functions
- 2016-08-16 18:09:06下载
- 积分:1
-
MATLAB
说明: matalab编程宝典!讲述matlab编程基础的书!入门及参考都可以!(Programming matalab book! Matlab programming based on the book! Introduction and reference can be!)
- 2009-08-12 13:07:38下载
- 积分:1
-
Bi-level-programming-model-of-Matlab
双层规划模型的遗传算法求解的Matlab源码(Bi-level programming model of the genetic algorithm of Matlab source)
- 2011-08-18 19:35:58下载
- 积分:1
-
DTC_ST
Dtc-St structure in matlab simulink work on
- 2013-03-21 03:27:40下载
- 积分:1
-
The-interface-of-AHP-build-in-Matlab
层次分析法的Matlab界面,用于AHP的处理计算(The interface of AHP build in Matlab)
- 2013-04-06 12:43:33下载
- 积分:1
-
code
说明: 集成好的focuss算法函数和DOA测试文件(A FOCUSS function and DOA test file, for learning sparse reconstruction.)
- 2020-04-23 12:32:54下载
- 积分:1
-
04-07-11
MATLAB APLICADO AL CONTROL AUTOMATICO
- 2011-10-04 03:55:40下载
- 积分:1
-
h.264-cuda-master
This project seeks to implement H.264 (the standard x264 is based on) to run on CUDA. Specifically we attempt to write the motion estimation module in CUDA.
Motion estimation is currently the most computationally intensive portion of the H.264 encoding process. Previous attempts to parallelize this algorithm in CUDA showed sizeable speedups but sacrificed quality by ignoring the motion vector prediction (MVp). We demonstrate the viability of a hierarchical (pyramid) motion estimation algorithm in CUDA. This solution addresses the MVp problem while still taking advantage of the CUDA framework.
- 2014-10-15 07:32:32下载
- 积分:1
-
MatchFilterLFM
高分辨率雷达 距离向压缩算法滤波器设计 三种方法 全面设计(clc
clear all
close all
2013年9月28日
---------------参数----------
Tr=42e-6
fs=9.5e6
K=0.7e11
Nfft=2048
-------------匹配滤波 时域生成--------------
t=(-Tr/2+1/fs:1/fs:Tr/2-1/fs)
w = kaiser(length(t),2.5)
w=w
w = ones(1,length(t))
ht1=w.*exp(-1i*pi*K*t.^2)
ht2=w.*exp(1i*pi*K*t.^2)
hf1=fft(ht1,Nfft)
hf2=fft(ht2,Nfft)
figure
subplot(211)
plot(abs(hf1))
title( 匹配滤波器1 幅频响应 )
subplot(212)
plot(phase(hf1))
title( 匹配滤波器1 相位 )
figure
subplot(211)
plot(abs(hf2))
title( 匹配滤波器2 幅频响应 )
)
- 2013-10-12 22:32:06下载
- 积分:1