-
rl_channel_allocation-master
有关于D2D通信中,信道仿真的编程是基于python语言的。(Programming for channel emulation in D2D communication)
- 2019-03-20 21:26:56下载
- 积分:1
-
glue
GLUE通过蒙托卡罗样点用来分析水文模型参数不确定性分析(GLUE through Monte Carlo samples used to analyze the hydrological model parameter uncertainty analysis)
- 2020-12-05 11:29:23下载
- 积分:1
-
eee
说明: 描述了NXP内置EEPROM的使用方法和注意事项,英文的但很有用(Describes the use of NXP built-in EEPROM and its considerations)
- 2020-06-16 06:20:01下载
- 积分:1
-
STR7系列32位ARM控制器的固件库,使开发此类控制器变得简单容易,内含AD,CAN,USRT,EMI等共14个例程。...
STR7系列32位ARM控制器的固件库,使开发此类控制器变得简单容易,内含AD,CAN,USRT,EMI等共14个例程。-STR7 family of 32-bit ARM controller firmware library, so that the development of such a controller has become simple and easy, including AD, CAN, USRT, EMI, such as a total of 14 routines.
- 2022-08-21 14:31:09下载
- 积分:1
-
BT服务器源程序
BT服务器源程序-BT server source code
- 2022-02-02 11:47:04下载
- 积分:1
-
一个可以用键盘的上下左右控制的色彩的正方体,唯一的缺点是在dos中运行的...
一个可以用键盘的上下左右控制的色彩的正方体,唯一的缺点是在dos中运行的-One can use the keyboard to control the up and down about the color of the cube, the only drawback is that running in dos
- 2023-08-08 12:20:02下载
- 积分:1
-
libLAS
说明: 已经配置好的能实现部分libLAS功能,基于vs2017的(The configurable libLAS can realize some functions of libLAS based on vs2017.)
- 2020-06-18 17:20:01下载
- 积分:1
-
Huawei various communications infrastructure database engineers and answer diffi...
华为各类工程师通信基础题库以及答案,很难的哦-Huawei various communications infrastructure database engineers and answer difficult oh
- 2022-03-01 18:01:06下载
- 积分:1
-
ExCEL VBA contrast to the two tables.
ExCEL中的VBA对比两个表。-ExCEL VBA contrast to the two tables.
- 2023-08-14 23:20:03下载
- 积分:1
-
Visual C# 使用键盘控制窗体的移动
Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。
private void Form1_Load(object sender, EventArgs e)
{
Frm_Main form1 = new Frm_Main();//创建窗体对象
form1.KeyPreview = true;//设置窗体接收按键事件
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
Point point = this.Location;//定义一个标识窗体的变量
switch (e.KeyData)//判断按键类型
{
case Keys.Up://当按键为上方向键时
point.Y -= 2;
break;
case Keys.Down://当按键为下方向键时
point.Y += 2;
break;
case Keys.Right://当按键为右方向键时
point.X += 2;
break;
case Keys.Left://当按键为左方向键时
point.X -= 2;
break;
case Keys.Escape://当按键为Esc键时
this.Close();//关闭本窗体
break;
default: break;
}
this.Location = point;
}
- 2022-03-13 23:48:13下载
- 积分:1