-
AD7124-8_cn
ADI公司的多通道采样芯片AD7124-8的中文资料介绍。(This is the chip data of the AD7124-8.)
- 2016-11-15 10:47:56下载
- 积分:1
-
STM32 NRF24L01驱动代码硬件SPI驱动和GPIO模拟SPI驱动都有,GPIO模拟驱动只要将相应管脚修改即可,已自测
STM32 NRF24L01驱动代码硬件SPI驱动和GPIO模拟SPI驱动都有,GPIO模拟驱动只要将相应管脚修改即可,已自测
- 2022-03-22 08:40:40下载
- 积分:1
-
NN_Task1
建立一个bp神经网络解决异或问题:神经网络的结构采用2:2:1的结构,可以改变隐层神经元的个数。(Create a bp neural network to solve XOR problem: the structure of the neural network structure using 2:2:1, you can change the number of hidden layer neurons.)
- 2013-11-27 21:21:17下载
- 积分:1
-
搜索二叉树
#pragma once
template
struct Node
{
T _data;
Node* left;
Node* right;
Node(T val) :_data(val), left(NULL), right(NULL)
{}
~Node()
{}
};
template
class BinSearchTree
{
public:
BinSearchTree() :_root(0)
{}
void CreatTree(char* str)
{
int n = strlen(str);
CreatTree_(_root,str,n);
}
void comFather(char a,char b)
{
return comFather_(_root,a,b);
}
protected:
void comFather_(Node* root,char a,char b)
{
if (root->_data > a && root->_data < b)
{
cout _data _data > a && root->_data > b)
comFather_(root->left, a, b);
if (root->_data < a && root->_data < b)
comFather_(root->right, a, b);
}
void insertVal(Node*& root, char ch)
{
if (root == NULL)
{
root = new Node(ch);
return;
- 2022-02-28 12:33:19下载
- 积分:1
-
OpenCV_Object_Detection_Theory_and_Practice
《OpenCV 目标识别:理论和实现》,OpenCV开发团队负责人的报告 英文PPT,pdf格式(OpenCV_Object_Detection_Theory_and_Practice,English slides, pdf format)
- 2009-04-17 08:23:26下载
- 积分:1
-
基于钨丝灯泡计算界面
辅助性设计软件,利用MFC搭建的简单界面,有利于钨丝灯泡设计验证环节。
- 2022-06-30 12:22:49下载
- 积分:1
-
LTE SDR
srsLTE is a free and open-source LTE library for SDR UE and eNodeB developed by SRS (www.softwareradiosystems.com). The library is highly modular with minimum inter-module or external dependencies. It is entirely written in C and, if available in the system, uses the acceleration library VOLK distributed in GNURadio.
- 2022-08-21 15:45:56下载
- 积分:1
-
c51测试程序
说明:接通电源后P0口的八个发光二极管依次从下往上点亮,然后蜂鸣器鸣叫一声,两个继电器轮流动作一次,数码管的个位显示8,再换成十位显示8,然后不断循环,如果这时按下红外遥控器的按键时,蜂鸣器立即发出“滴滴滴”的提示音,同时将这个按键的键值通过串口在电脑屏幕上显示出来(需要运行串口调试软件)通过这个程序可以判断单片机实验开发板的各个部分的硬件和软件都是完好的,具体的源程序如下:
- 2023-07-30 22:10:02下载
- 积分:1
-
SAR_geo_correction
距离模型、多普勒模拟、地球模型、的雷达图像几何校正
(Radar image geometric correction)
- 2011-08-03 07:56:26下载
- 积分:1
-
lowfir1
C code version of Matlab function fir1.m (lowpass only)
- 2010-08-13 17:46:05下载
- 积分:1