-
是一个c#串口通讯程序,很好的实现数据传输
是一个c#串口通讯程序,很好的实现数据传输-Is a c# Serial communication program, data transmission to achieve very good
- 2022-02-04 22:16:49下载
- 积分:1
-
高斯投影坐标正反算
正反算的实质
正算公式是将大地坐标(B,L)求解高斯平面坐标(X,Y),反算公式是将高斯平面坐标(X,Y)求解大地坐标(B,L)
高斯投影的特点
(1)投影后中央子午线为直线,长度不变形,其余经线投影对称并且凹向于中央子午线,离中央子午线越远,变形越大。
(2)赤道的投影也为一直线,并与中央子午线正交,其余的经纬投影为凸向赤道的对称曲线。
(3)经纬投影后仍然保持相互垂直的关系,投影后有角度无变形。
- 2023-05-20 14:30:03下载
- 积分: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
-
EvaluateReversePolishNotation
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /. Each operand may be an integer or another expression.
Some examples:
[ 2 , 1 , + , 3 , * ] -> ((2 + 1) * 3) -> 9
[ 4 , 13 , 5 , / , + ] -> (4 + (13 / 5)) -> 6
分析:这一题就是写程序计算逆波兰式的结果,遍历表达式,碰到操作数入栈,碰到操作符就从栈顶取出两个操作数,再将计算后的结果入栈,最后栈中剩余的唯一操作数就是计算结果。(. Evaluate the value of an arithmetic expression in Reverse Polish Notation Valid operators are+,-,*,/Each operand may be an integer or another expression Some examples:.. [" 2" , " 1" , " +" , " 3 " ," * " ]-> ((2+ 1)* 3)-> 9 [" 4 " ," 13 " ," 5 " ," /" ," + " ]-> (4+ (13/After this problem is to write a program to calculate the inverse Polish results, iterate expression operand stack encounter, encounter operator to fetch two operands the stack, and then calculated as follows:> 6 Analysis- 5)) The results of the stack, the only remaining operand stack is the final calculations.)
- 2015-03-15 23:06:09下载
- 积分:1
-
DAC8571模拟IIC
DAC8571通过iic协议和msp430通信(DAC8571 communicates with MSP430 through IIC protocol)
- 2020-06-21 11:40:02下载
- 积分:1
-
VCPPFileMonitor
本程序可自动监测被测主机中的所有文件的操作,通信包截获等(The program can operate automatically monitor files, such as intercepted communications package)
- 2015-04-09 13:53:57下载
- 积分:1
-
RFID读卡模块电路图、PCB源文件
125K RFID读卡模块,包含UART输出,韦根输出,程序中,根据曼彻斯特原理,找到长电平和短电平,根据跳变沿分析出0数据还是1数据。然后寻找消息头,后面的数据进行 行 列奇偶校验,从而分析出卡号。(125K RFID card reader module, including UART output, Wei root output, in the program, according to the principle of Manchester, to find a long level and a short level, according to jump along the analysis of 0 data or 1 data. Then look for the message header, and then the data for row and row parity check, so as to analyze the card number.)
- 2017-09-10 09:45:33下载
- 积分:1
-
1
说明: LMS在加性高斯白噪声信道下迭代2000步的输出能量和误差权矢量(LMS in the additive white Gaussian noise channel output of the next iteration step 2000, the energy and the error weight vector)
- 2009-11-15 16:46:54下载
- 积分:1
-
ISODATA算法的步骤:(1)预置设定的聚类分析方法…
ISODATA算法
算法步骤:
(1) 预置
a. 设定聚类分析控制参数:
lc=预期的类数,
lNc=初始聚类中心个数(可以不等于c),
lθn =每一类中允许的最少模式数目(若少于此数不能单独成为一类),
lθs =类内各分量分布的距离标准差上界(大于此数就分裂),
lθD=两类中心间的最小距离下界(若小于此数,这两
-ISODATA algorithm algorithm steps: (1) preset settings a. Cluster analysis control parameters: lc = expected number of categories, lNc = initial number of cluster centers (which may not equal to c), lθn = each category of permit the minimum number of models (if less than that and should not become a separate category), lθs = category weight distribution of the standard deviation of the distance between the upper bound of (larger than this number on the split), lθD = two types of the minimum distance between centers of the lower bound of ( If the number is smaller than this, these two
- 2022-06-13 21:51:57下载
- 积分:1
-
R2000模块开发C#开发文档
R2000读写器开发
- 2018-05-12下载
- 积分:1