-
这是c++种比较实用的优先级的选择问题,主要为了资料的查阅方便...
这是c++种比较实用的优先级的选择问题,主要为了资料的查阅方便-c++batter choice
- 2022-09-27 21:00:03下载
- 积分:1
-
在集成电路中,通常采用T型解码网络实现数字量往模拟的转换,再利用运算放大器完成模拟电流变为模拟电压的转换。所以,要把一个数字量变为模拟电压,实际上需要两个环节,...
在集成电路中,通常采用T型解码网络实现数字量往模拟的转换,再利用运算放大器完成模拟电流变为模拟电压的转换。所以,要把一个数字量变为模拟电压,实际上需要两个环节,先把数字量变为模拟电流,这是由D/A转换器完成的;再将模拟电流变成模拟电压,这是由运算放大器完成的。有时D/A转换器芯片只包含前一个环节,有些D/A转换器则包含两个环节,用前一种芯片时,需要外接运算放大器才能得到模拟电压。-In integrated circuits, the usual T-decode digital networks to analog conversion, and then complete the simulation of the use of op-amp current into the analog voltage conversion. Therefore, it is necessary to become a digital simulation of voltage, in fact, need two links, first into a digital simulation of currents, this is determined by D/A converters completed then simulate current into the analog voltage, this is determined by computing completed amplifier. Sometimes D/A converter chip contains only a part before, some D/A converter includes two aspects, before a chip, the need for external op-amp voltage can be simulated.
- 2022-03-04 04:10:59下载
- 积分:1
-
一款比较实用的学生成绩管理系统,功能强大,切实用,希望大家能够喜欢,有什么问题请加Q229929778...
一款比较实用的学生成绩管理系统,功能强大,切实用,希望大家能够喜欢,有什么问题请加Q229929778-A comparison of the performance of their students practical management system, the powerful, effective with the hope that people will like. What is the problem please dial Q229929778
- 2022-03-15 10:31:25下载
- 积分:1
-
DAC0832的示例程序,希望对大家有帮战哦!
DAC0832的示例程序,希望对大家有帮战哦!-Examples DAC0832 procedures, in the hope that everyone has to help fight Oh!
- 2022-01-22 03:36:30下载
- 积分:1
-
verilog写的分频程序,可以对输入的频率分频
verilog写的分频程序,可以对输入的频率分频-Verilog write the sub-frequency procedures, can the frequency of the input frequency
- 2023-08-11 09:50:04下载
- 积分:1
-
霍夫曼编码,根据给定权值创建赫夫曼编码,显示每一步如何进行及所得编码...
霍夫曼编码,根据给定权值创建赫夫曼编码,显示每一步如何进行及所得编码-Huffman coding, according to the weight given to create Huffman codes, showing how each step and the resultant code
- 2022-11-17 16:05:03下载
- 积分:1
-
汇编语言编程源代码
汇编语言编程源代码- Assembly language programming source code
- 2022-06-19 18:40:22下载
- 积分:1
-
8051单片机的A/D 2500,128X64点阵LCD的演示程序
8051 a/D2500,lcd 128x64演示程序
- 2022-09-19 10:15:03下载
- 积分:1
-
这是一款自动皂液器的控制程序,可以选择工作次数,低电压检测...
这是一款自动皂液器的控制程序,可以选择工作次数,低电压检测-This automatic soap dispenser is a control program, you can choose to work the number of low-voltage detection
- 2022-07-10 01:46:46下载
- 积分:1
-
vb 分形树
Dim xs As Integer
Dim ys As Integer
Dim alph As Single
Dim lng As Single
Dim m As Integer
Const PI As Single = 3.14159265
Private Function tree(x As Integer, y As Integer, angle As Single, length As Single, n As Integer)
Dim x0 As Integer
Dim y0 As Integer
Dim alpha As Single
Dim beita As Single
Dim leng As Single
BackColor = vbWhite
If n > 0 Then
x0 = x + Cos(angle) * length
y0 = y - Sin(angle) * length
picture1.Line (x, y)-(x0, y0), vbbrake
alpha = angle - PI / 8
beita = angle + PI / 8
leng = 2 * length / 3
Call tree(x0, y0, alpha, leng, n - 1)
&nbs
- 2022-01-24 19:06:52下载
- 积分:1