搜索结果
找到约 138 项符合
TH 的查询结果
按分类筛选
- 全部分类
- matlab例程 (13)
- 其他 (12)
- 其他书籍 (11)
- 单片机编程 (9)
- 通讯/手机编程 (6)
- 单片机开发 (6)
- 书籍源码 (5)
- 系统设计方案 (4)
- 数值算法/人工智能 (3)
- Linux/Unix编程 (3)
- Java编程 (3)
- 数学计算 (3)
- 电子书籍 (3)
- 文章/文档 (3)
- 通讯编程文档 (3)
- 技术资料 (3)
- Java书籍 (2)
- 汇编语言 (2)
- 微处理器开发 (2)
- 加密解密 (2)
- 嵌入式/单片机编程 (2)
- Internet/网络编程 (2)
- DSP编程 (2)
- 人工智能/神经网络 (2)
- VC书籍 (2)
- 学术论文 (1)
- 行业应用文档 (1)
- 模拟电子 (1)
- 无线通信 (1)
- 电子元器件应用 (1)
- 驱动编程 (1)
- Windows Mobile (1)
- RFID编程 (1)
- 游戏 (1)
- GPS编程 (1)
- 串口编程 (1)
- Delphi/CppBuilder (1)
- 其他数据库 (1)
- Delphi控件源码 (1)
- 其他行业 (1)
- 技术管理 (1)
- JavaScript (1)
- 嵌入式Linux (1)
- 文件格式 (1)
- 压缩解压 (1)
- 软件设计/软件工程 (1)
- Ajax (1)
- 3G开发 (1)
- *行业应用 (1)
- 家庭/个人应用 (1)
- 行业发展研究 (1)
- 能源行业(电力石油煤炭) (1)
- 手册 (1)
- 书籍 (1)
- VIP专区 (1)
其他书籍 This book provides a complete intermediate-level discussion of microcontroller programming using th
This book provides a complete intermediate-level discussion of microcontroller programming using
the C programming language. It covers both the adaptations to C necessary for targeting an
embedded environment, and the common components of a successful development project.
C is the language of choice ...
单片机开发 This is a Ebook. Name is "A introductioin to C" You can learn C programming language and refer to th
This is a Ebook. Name is "A introductioin to C" You can learn C programming language and refer to this ebook.
JavaScript mastering dojo The book really rolls out the red carpet for Dojo to emerge with guns blazing! Th
mastering dojo
The book really rolls out the red carpet for Dojo to emerge with guns
blazing! The authors show you how easy it is to use impressive
widgets without installing a thing. I was amazed to discover that
JavaScript is not just a toy language, how Dojo is built on top of it,
and how both a ...
单片机开发 Discription: This multi-master driver provides the software interface to the I2C Bus hardware of th
Discription: This multi-master driver provides the software interface to the
I2C Bus hardware of the M3062x series of MitsubishiMCU.
其他 For solving the following problem: "There is No Free Lunch" Time Limit: 1 Second Memory Limit: 3
For solving the following problem:
"There is No Free Lunch"
Time Limit: 1 Second Memory Limit: 32768 KB
One day, CYJJ found an interesting piece of commercial from newspaper: the Cyber-restaurant was offering a kind of "Lunch Special" which was said that one could "buy one get two for free". That ...
其他 drv43260 if vlc program want to support the format of rmvb and rm,so-called real ,you can plug in th
drv43260 if vlc program want to support the format of rmvb and rm,so-called real ,you can plug in the dll file to support vlc
单片机开发 51单片连tcs230的源程序
51单片连tcs230的源程序,绝对原创,可以记忆颜色。
#define uchar unsigned char
#include <reg52.h>
#include<math.h>
sbit S0=P1^7
sbit S1=P1^0 //端口定义
sbit S2=P1^1
sbit S3=P1^2
sbit OE=P1^3
sbit OUT=P3^4 //频率从TO口输入
sbit key0=P1^5
sbit LED=P1^6
sbit a=P3^0
sbit b=P3^1
uchar color //1: ...
电子书籍 BlackBerry Hacks will enhance your mobile computing with great tips and tricks. You ll learn that th
BlackBerry Hacks will enhance your mobile computing with great tips and tricks. You ll learn that the BlackBerry is capable of things you never thought possible, and you ll learn how to make it an even better email and web workhorse:
Get the most out of the built-in applications
Take control of em ...
书籍源码 计算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,
计算全息close all clc clear
A=zeros(64)
A(15:20,20:40)=1 A(15:50,20:25)=1
A(45:50,20:40)=1 A(30:34,20:35)=1
% ppp=exp(rand(64)*pi*2*i) A=A.*ppp
% Author s email: zjliu2001@163.com
figure imshow(abs(A),[])
Fa=fft2(fftshift(A)) Fs=fftshift(Fa)
Am=abs(Fs) % amplitude
Ph=angle(Fs) % phase
s=11 ...
文章/文档 创建进度条 jpb = new JProgressBar() jbutton = new JButton("观看演示") jbutton.addActionListener(th
创建进度条
jpb = new JProgressBar()
jbutton = new JButton("观看演示")
jbutton.addActionListener(this)
this.getContentPane().add(jbutton)
//设置进度条的前景色为红色
jpb.setForeground(Color.red)
this.getContentPane().add(jpb)
//给进度条注册事件监听器 ...