搜索结果
找到约 444 项符合
DOWN-converter 的查询结果
matlab例程 matlab实现最优化选择的一个算法
matlab实现最优化选择的一个算法,大家可以下下来参考,我也是从别处down的,谢谢原作者
Java书籍 关于extjs详细开发的文档
关于extjs详细开发的文档,我也是从网络上down下来的,好东西不敢一个人独享,分享出来给大家,
编辑器/阅读器 FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPAC
FileEdit can edit file ,save file ,open file ,have basic simple functions for file .INSERT, BACKSPACE ,TAB,PGUP,PGDOWN,UP,DOWN,LEFT,RIGHT AND SO ON
嵌入式/单片机编程 xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。 DS18B20温度控制数码管显示 : 1、K3 → 进入设定温度报警值 TL 状态: L--20 2、K3 → 进入设定温度
xl系列单片机实验仪演示程序 DS18B20温度控制数码管 。
DS18B20温度控制数码管显示 :
1、K3 → 进入设定温度报警值 TL 状态: L--20
2、K3 → 进入设定温度报警值 TH 状态: H--28
3、K3 → 返回
4、设定过程: K1 →加键 (UP), K2 →减键 (DOWN),可快速调。 ...
数据结构 void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=
void Knight(int i , int j)
{
// printf("%d %dn",i,j)
if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size )
{
return
}
step++
board[i][j]=step
if (step == Size*Size)
{
showboard()
system("PAUSE")
return
}
//DFS
Knight(i-2,j-1) //left
Knight(i-2,j+1)
Knight(i+2,j-1) //right ...
其他书籍 CYPRESS专门针对电动自行车开发的产品CY8C24533。该产品为内部编号
CYPRESS专门针对电动自行车开发的产品CY8C24533。该产品为内部编号,数据手册和参考资料在CYPRESS公开网站上DOWN不到。这份资料是该产品的参考手册。
VHDL/FPGA/Verilog --文件名:mine4.vhd。 --功能:实现4种常见波形正弦、三角、锯齿、方波(A、B)的频率、幅度可控输出(方波 --A的占空比也是可控的)
--文件名:mine4.vhd。
--功能:实现4种常见波形正弦、三角、锯齿、方波(A、B)的频率、幅度可控输出(方波
--A的占空比也是可控的),可以存储任意波形特征数据并能重现该波形,还可完成
--各种波形的线形叠加输出。
--说明: SSS(前三位)和SW信号控制4种常见波形种哪种波形输出。4种波形的频率、
--幅度(基准幅度A)的 ...
USB编程 This software package contains the USB framework core developped by ATMEL, as well as a CDC driver
This software package contains the USB framework core developped by ATMEL,
as well as a CDC driver for an USB to serial converter.
The following files are included :
- core/
-> Source code for the framework core
-> Makefile for the core
- cdc/
-> Source code for the CDC driver
-> Makefile ...
文章/文档 To review what a metaball is, and how to render them and to describe a new optimization I ve made
To review what a metaball is, and how to render them and to describe a
new optimization I ve made for rendering metaballs. For complex scenes,
it can render hundreds of times faster, though I m certain others have
discovered this trick as well. It does very slightly change the
characteristic ...
VC书籍 This sample shows different ways of performing anti-aliasing - both by using only the native hardwa
This sample shows different ways of performing anti-aliasing - both by using only
the native hardware AA support, and by mixing the hardware modes with additional
supersampling. There are various ways in which the supersampled image can be
down-sampled. The way we do the downsampling in this example ...