-
MIMO-radar-signal-modeling
均匀线阵方向图, MIMO雷达信号建模、波束形成和目标检测(Uniform linear array pattern MIMO radar signal modeling, beamforming and target detection)
- 2020-07-02 13:20:01下载
- 积分:1
-
novaRPG
novaRPG iphone Object_C(My novaRPG)
- 2012-12-06 21:50:42下载
- 积分:1
-
1303
单片机驱动的OLED显示屏,单色绿光。C语言(Single-chip-driven OLED display, monochrome green. C language)
- 2008-12-21 21:01:57下载
- 积分:1
-
processCode
经典,功能详尽的,查看系统进程详细的VC6源代码。包括源代码和演示()
- 2007-09-28 22:22:08下载
- 积分:1
-
guangxian
《光线引擎演示程序》执行程序+源代码,《光线引擎演示程序》执行程序+源代码(" Light engine demo" + source code implementation of procedures, " light engine demo" + source code implementation of procedures)
- 2009-04-16 09:16:00下载
- 积分:1
-
pylori
A VANET research program
- 2012-08-23 21:50:13下载
- 积分:1
-
bmp180_barometer1
借由蓝牙芯片CSR1010(未用蓝牙)实现对气压计BMP180的驱动并显示到1602中,从而能对气压和温度有个环境上的了解。(With the help of bluetooth module CSR1010,of course where I did not ultilize bluetooth function,I achieved the goal of driving the barometer BMP180 besides displaying to LCD1602,thus having a well knowledge of the surroundings.)
- 2015-12-08 14:09:25下载
- 积分:1
-
基于c语言实现的的流星雨
说明: C语言课程设计——基于C语言实现的的流星雨(the meteor shower by C language)
- 2020-11-17 16:45:37下载
- 积分:1
-
winform 抽奖程序 有图 完整源码下载
winform 抽奖程序 有图 完整源码下载
- 2013-08-19下载
- 积分:1
-
vp树
#ifndef _VPTREE_HEADER_
#define _VPTREE_HEADER_
#include
#include
#include
#include
#include
#include
template
class VpTree
{
public:
VpTree() : _root(0) {}
~VpTree() {
delete _root;
}
void create( const std::vector& items ) {
delete _root;
_items = items;
_root = buildFromPoints(0, items.size());
}
void search( const T& target, int k, std::vector* results, std::vector* distances)
- 2023-06-23 00:20:03下载
- 积分:1