资源列表
环板下料
- Autocad 环板下料,用于环形钢板下料,并根据分瓣数量自动进行排版,力求达到最材料利用率(The lisp program for Autocad layoff)
section_check
- 本程序用于检查bladed计算的统计结果(This procedure is used to check the statistical results of bladed calculations)
QN8027 mod
- Libreria eagle cadsoft modulo QN8027
tar
- 在QT界面制作指示灯,开关变化颜色,能改变大小颜色。(Make the indicator light on the QT interface, change the color of the switch, change the size and color.)
matlab20170719
- 根据给定点集计算包围该点集的最小椭球体,计算方法为PAC主成分分析法(The minimum ellipsoid that surrounds the set of points is computed according to the set of given points)
fit
- 对一系列散点数据进行拟合,得到平滑的曲线(A series of scattered data are fitted to obtain a smooth curve)
AmountUtil
- 各种类型的数学运算,判断数值大小,四舍五入运算(Various types of mathematical operations, to determine the size of the value, four, five into the operation)
AMSR2_16Day_Max
- IDL对AMSR2数据多天合成,可修改为8天合成,求平均等,亲测可以(IDL multi day synthesis of AMSR2 data, can be modified to 8 days synthesis, seek the average, and so on, pro test can be)
LCD
- LCD1602液晶屏的读写。读写状态及读写数据(LCD1602 WRITE AND READ)
83390071Lms_beamform
- 这是一个关于阵列信号处理的LMS自适应波束形成MATLAB程序(This is an LMS adaptive beam forming array signal processing on MATLAB program)
net调用 webservice
- 调试成功过用net调用 webservicenet(this is use net call webservicenet)
新建文本文档
- 一、循环队列的基础知识 1.循环队列需要几个参数来确定 循环队列需要2个参数,front和rear 2.循环队列各个参数的含义 (1)队列初始化时,front和rear值都为零; (2)当队列不为空时,front指向队列的第一个元素,rear指向队列最后一个元素的下一个位置; (3)当队列为空时,front与rear的值相等,但不一定为零; 3.循环队列入队的伪算法 (1)把值存在rear所在的位置; (2)rear=(rear+1)%maxsize ,其中maxsize代表数