搜索结果
找到约 302 项符合
End 的查询结果
按分类筛选
- 全部分类
- 单片机编程 (21)
- 技术资料 (16)
- 其他 (14)
- 汇编语言 (14)
- 书籍 (14)
- VxWorks (12)
- 编译器/解释器 (10)
- 源码 (9)
- 电源技术 (8)
- Delphi控件源码 (8)
- 软件设计/软件工程 (7)
- matlab例程 (7)
- 其他书籍 (7)
- 网络 (6)
- 单片机开发 (6)
- 通讯/手机编程 (6)
- 嵌入式/单片机编程 (5)
- 人工智能/神经网络 (5)
- 其他行业 (5)
- 行业发展研究 (5)
- 电子书籍 (4)
- Delphi/CppBuilder (4)
- VC书籍 (4)
- Java编程 (4)
- 模拟电子 (3)
- 嵌入式综合 (3)
- ARM (3)
- C/C++语言编程 (3)
- VHDL/FPGA/Verilog (3)
- 压缩解压 (3)
- 系统设计方案 (3)
- SCSI/ASPI (3)
- 文件格式 (3)
- 数据结构 (3)
- 其他数据库 (3)
- Linux/Unix编程 (3)
- 技术管理 (3)
- VIP专区 (3)
- 通信网络 (2)
- 无线通信 (2)
- 可编程逻辑 (2)
- 驱动编程 (2)
- Windows CE (2)
- GPS编程 (2)
- Symbian (2)
- 数学计算 (2)
- 软件工程 (2)
- 邮电通讯系统 (2)
- 通讯编程文档 (2)
- JavaScript (2)
- 汇编编程 (2)
- 软件 (2)
- 教程 (2)
- 教程资料 (1)
- PCB相关 (1)
- 技术书籍 (1)
- 工控技术 (1)
- 传真(Fax)编程 (1)
- 游戏 (1)
- 操作系统开发 (1)
- 家庭/个人应用 (1)
- Modem编程 (1)
- Java书籍 (1)
- 其他嵌入式/单片机内容 (1)
- 交通/航空行业 (1)
- Internet/网络编程 (1)
- DSP编程 (1)
- 串口编程 (1)
- 3G开发 (1)
- 微处理器开发 (1)
- FlashMX/Flex源码 (1)
- 编辑器/阅读器 (1)
- 医药行业 (1)
- CA认证 (1)
- 书籍源码 (1)
- Oracle数据库 (1)
- 接口技术 (1)
- 仿真技术 (1)
- DSP工具/软件 (1)
- Jsp/Servlet (1)
- 其他 (1)
- 论文 (1)
邮电通讯系统 This example describes how to use the ADC and DMA to transfer continuously converted data from ADC
This example describes how to use the ADC and DMA to transfer continuously
converted data from ADC to a data buffer.
The ADC is configured to converts continuously ADC channel14.
Each time an end of conversion occurs the DMA transfers, in circular mode, the
converted data from ADC1 DR register to t ...
单片机开发 This example provides a description of how to use a DMA channel to transfer a word data buffer fro
This example provides a description of how to use a DMA channel to transfer a
word data buffer from memory (Flash) to memory (RAM).
The dedicated DMA channel is configured to transfer once a time a 32 word data buffer
stored as constant in the Flash memory to another buffer in the RAM memory.
The r ...
Java编程 基于UDP实现E-Mail传输 工作过程描述: 客户端描述: 1. Client(以下简称C端)端将邮件以规定的大小封装为符合要求的UDP包。 2. 将封装好的UDP包发出
基于UDP实现E-Mail传输
工作过程描述:
客户端描述:
1. Client(以下简称C端)端将邮件以规定的大小封装为符合要求的UDP包。
2. 将封装好的UDP包发出,并等待Server(以下简称S端)端收到相应的UDP包后返回的回应Acknowledge(以下简称为ACK)。若收到的为Positive ACK,则继续发包;若收到的为Negtive ACK,则将应发的包重发 ...
串口编程 unit comm interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, D
unit comm
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
SPComm, StdCtrls, ExtCtrls
type
TFcomm = class(TForm)
Comm1: TComm
GroupBox1: TGroupBox
Memo1: TMemo
Memo2: TMemo
GroupBox2: TGroupBox
Button1: TButton
Btn_send: TButton
Button2: ...
Symbian symbian os手机程序开发
symbian os手机程序开发,s60平台http client end
to end
数学计算 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1
数学计算 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1
其他 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1
其他 求标准偏差 > function c=myfunction(x) > [m,n]=size(x) > t=0 > for i=1:numel(x) >
求标准偏差
> function c=myfunction(x)
> [m,n]=size(x)
> t=0
> for i=1:numel(x)
> t=t+x(i)*x(i)
> end
> c=sqrt(t/(m*n-1))
function c=myfunction(x)
[m,n]=size(x)
t=0
for i=1:m
for j=1:n
t=t+x(i,j)*x(i,j)
end
end
c=sqrt(t/(m*n-1
汇编语言 MOV P2 ,#0FFH MOV P3 ,#0FFH ACALL DEL AJMP MAIN ORG 0200H DEL: MOV R5,#04H F3: MOV R6,#0FF
MOV P2 ,#0FFH
MOV P3 ,#0FFH
ACALL DEL
AJMP MAIN
ORG 0200H
DEL: MOV R5,#04H
F3: MOV R6,#0FFH
F2: MOV R7,#0FFH
F1: DJNZ R7,F1
DJNZ R6,F2
DJNZ R5,F3
RET
END