-
simmm1
MMM1排队系统建模与仿真,可以用MATLAB运行,有2个仿真图(MMM1 queuing system modeling and simulation, you can use MATLAB to run, there are two simulation charts)
- 2010-12-28 07:25:49下载
- 积分:1
-
foi_mimo.tar
GNUradio中mimo实现,基于GNURadio3.3.0以及UHD(mimo in GNURadio based on GNURadio 3.3.0 and UHD)
- 2013-12-05 12:06:15下载
- 积分:1
-
main
测试步进电机正反转,可以看到步进电机正转一会儿又反正,一直循环。(Test step motor and reversing, can see is a stepping motor and anyway, have been circulating.)
- 2014-08-01 22:57:34下载
- 积分:1
-
ESP8266-WIFI数据透传实验
说明: ESP8266实现数据传输,可以是数字、字符、中文等(ESP8266 realizes data transmission, which can be digital, character, Chinese, etc.)
- 2020-06-21 04:20:02下载
- 积分:1
-
C程序设计语言
本书是由C语言的设计者Brian W. Kernighan和Dennis M. Ritchie编写的一部介绍标准C语言及其程序设计方法的权wei性经典著作。全面、系统地讲述了C语言的各个特性及程序设计的基本方法,包括基本概念、类型和表达式、控制流、函数与程序结构、指针与数组、结构、输入与输出、UNIX系统接口、标准库等内容。(This book is written by Brian W. Kernighan and Dennis M. Ritchie, the designers of C language. It is a classic authoritative work introducing standard C language and its programming methods. This paper comprehensively and systematically describes the characteristics of C language and the basic methods of program design, including basic concepts, types and expressions, control flow, function and program structure, pointer and array, structure, input and output, UNIX system interface, standard library and so on.)
- 2020-06-18 03:40:01下载
- 积分:1
-
Unity3d僵尸2D跑酷
一款Unity引擎做的僵尸2D跑酷,基本功能,跳跃,地图,碰撞 基本功能都做完了大家可以看看
- 2022-12-05 18:05:03下载
- 积分:1
-
c++技能百练
说明: c++技能百练.rar
经典例子。知识点实战练习。(C + + skill training.rar)
- 2019-11-03 22:15:09下载
- 积分:1
-
基于stm32的gsm+GPS
基于stm32的gsm+GPS,正点原子官方给的苦稍微移植了一下,基于stm32的gsm+GPS,正点原子官方给的苦稍微移植了一下
- 2022-03-12 04:30:56下载
- 积分:1
-
haisanids
VC++网络连接监控程序源代码,适合编写网络监控的编程者参考,选择监听的网络IP地址后才可以开始监听里程。并包括了IDS过滤器参数设置,几点提示:
1.初始状态只监听连接,不捕获IP数据
2.鼠标右击列表选择或取消监控某端口数据
3.为防止ping攻击,一般情况ping数据全部监控
4.监控某端口数据时,不监控ping包
5.数据超过20k将被清空
6.右边窗口停止抓包后显示十六进制数(VC++ source code network connection monitoring, network monitoring program for the preparation of reference, select the monitor s network IP address before you can start listening mileage. And includes IDS filter parameter settings, a few tips:
1. Initial state only listen for connections, do not capture IP data
2 Right-click the list to select or deselect a port monitoring data
3 To prevent ping attacks, general ping all monitoring data
4 When a port monitoring data, no monitoring of ping packets
5 The data will be cleared over 20k
6 right window displays the hexadecimal number stopped after capture)
- 2014-07-02 10:17:36下载
- 积分:1
-
stm32飞控
很不错的飞控
float q0 = 1, q1 = 0, q2 = 0, q3 = 0; // quaternion elements representing the estimated orientation
float exInt = 0, eyInt = 0, ezInt = 0; // scaled integral error
void IMUupdate(T_int16_xyz *gyr, T_int16_xyz *acc, T_float_angle *angle)
{
float ax = acc->X,ay = acc->Y,az = acc->Z;
float gx = gyr->X,gy = gyr->Y,gz = gyr->Z;
float norm;
// float hx, hy, hz, bx, bz;
float vx, vy, vz;// wx, wy, wz;
float ex, ey, ez;
// ???????????
float q0q0 = q0*q0;
float q0q1 = q0*q1;
float q0q2 = q0*q2;
// float q0q3 = q0*q3;
float q1q1 = q1*q1;
// float q1q2 = q1*q2;
float q1q3 = q1*q3;
float q2q2 = q2*q2;
float q2q3 = q2*q3;
float q3q3 = q3*q3;
if(ax*ay*az==0)
- 2022-02-28 17:16:50下载
- 积分:1