-
Matlab通信系统的建模仿真
实验四 数字频带传输系统的建模与仿真...
Matlab通信系统的建模仿真
实验四 数字频带传输系统的建模与仿真-matlab
- 2022-09-29 23:25:04下载
- 积分:1
-
温度测量系统源码
通过A/D0809数模转换
LED显示温度...
温度测量系统源码
通过A/D0809数模转换
LED显示温度
- 2022-04-12 01:47:34下载
- 积分:1
-
Experiments done by the serial communication code used in the procedure, I hope...
做串口通信实验时所用的编码程序,希望对你们有用-Experiments done by the serial communication code used in the procedure, I hope useful to you
- 2022-03-16 11:08:35下载
- 积分:1
-
asp网上购物系统 论文ASPeshplunwenyuanma
asp网上购物系统 论文ASPeshplunwenyuanma-ASPeshplunwenyuanma
- 2022-03-24 03:53:08下载
- 积分:1
-
ST套件产生汽车防盗器报警声,本实例的目的是让大家学会用单片机产生声音的方法,学会计算程序所用时间 本实例的功能是能用16F84产生汽车防盗器的报警声,频率分两...
ST套件产生汽车防盗器报警声,本实例的目的是让大家学会用单片机产生声音的方法,学会计算程序所用时间 本实例的功能是能用16F84产生汽车防盗器的报警声,频率分两个0.1s第一个
0.1S频率从1.8K-3.5K匀速增加第二个0.1S频率从3.5K-1.8K匀速减少,
程序复位后,按S2喇叭叫两声,按S3喇叭叫15秒,中途可按S5停止.
PIC单片机
烧写时应注意:配置位已经在程序中写明,加载HEX文件时会自动加载,烧写时不用再手动设置配置位。
实验时请注意套件跳线选择;-pic
- 2023-08-29 13:20:02下载
- 积分:1
-
用89C2051实现恒速控制,原理图、印刷电路板图、软件源程序
用89C2051实现恒速控制,原理图、印刷电路板图、软件源程序-To achieve constant speed control with 89C2051, schematics, printed circuit board diagram, software source code
- 2022-01-26 04:28:19下载
- 积分:1
-
HT16512 VFD控制器的使用,采用ASM语言
HT16512 VFD控制器的使用,采用ASM语言-HT16512 VFD controller use, the use of ASM language
- 2022-11-12 14:40:03下载
- 积分:1
-
This paper stresses the C language devil language interpretation systems, the de...
本文主要讲了C语言编写魔王语言解释系统,把魔王抽象的语言通过进队出队按照规则α 转换为 β1β2…βm 和θδ1δ2…δn 转换为 θδnθδn-1… θδ1θ 进行解释,最后解释译成我们能够看懂得语言。同时也讲述了在编写调试程序中一些需注意的问题,如调试程序的步骤。通过队的应用(出队入队)以及其他相关知识完成了这次课程设计。-This paper stresses the C language devil language interpretation systems, the devil of abstract language into the team through the Team in accordance with the rules is converted to α β1β2 ... βm and θδ1δ2 ... δn convert θδnθδn-1 ... θδ1θ explanation, and finally explained to us to look to understand the language. Also described in the preparation of commissioning procedures should pay attention to some issues, such as the debugger steps. Through the application of force (a team into the team), and other relevant knowledge to complete the curriculum design.
- 2022-10-15 03:55:04下载
- 积分:1
-
经典的迷宫算法,这是一个迷宫算法很好的例子,不懂的人可以下来...
经典的迷宫算法,这是一个迷宫算法很好的例子,不懂的人可以下来-classic maze algorithm, which is a maze algorithm good example, but not the people can look down
- 2022-12-25 12:30:04下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1