搜索:Struct+Data
找到约 2,373 项符合「Struct+Data」的查询结果
结果 2,373
按分类筛选
- 全部
- 其他书籍 (75)
- 其他 (54)
- 单片机开发 (53)
- 技术资料 (51)
- matlab例程 (50)
- Java编程 (44)
- 数据结构 (38)
- 加密解密 (36)
- 软件设计/软件工程 (29)
- 电子书籍 (26)
- 数值算法/人工智能 (22)
- 汇编语言 (19)
- 通讯编程文档 (19)
- 人工智能/神经网络 (18)
- 数学计算 (17)
- 系统设计方案 (17)
- 行业发展研究 (17)
- 数据库系统 (16)
- VHDL/FPGA/Verilog (16)
- 通讯/手机编程 (15)
- 书籍源码 (15)
- 压缩解压 (14)
- Linux/Unix编程 (13)
- 文章/文档 (13)
- 其他行业 (12)
- 其他嵌入式/单片机内容 (12)
- SQL Server (12)
- GPS编程 (12)
- 其他数据库 (11)
- 微处理器开发 (11)
- Java书籍 (11)
- 驱动编程 (10)
- 文件格式 (10)
- 嵌入式/单片机编程 (10)
- Delphi控件源码 (10)
- 书籍 (10)
- 网络 (9)
- VC书籍 (9)
- 编译器/解释器 (8)
- 软件工程 (7)
- 串口编程 (7)
- 邮电通讯系统 (7)
- 教育系统应用 (6)
- 技术管理 (5)
- USB编程 (5)
- 3G开发 (5)
- Internet/网络编程 (4)
- 中间件编程 (4)
- DSP编程 (3)
- 操作系统开发 (3)
- Modem编程 (3)
- 企业管理 (3)
- 嵌入式Linux (3)
- J2ME (3)
- 交通/航空行业 (3)
- Symbian (3)
- Oracle数据库 (3)
- 电子政务应用 (3)
- Jsp/Servlet (3)
- 单片机编程 (2)
- Linux/uClinux/Unix编程 (2)
- *行业应用 (2)
- Applet (2)
- 多国语言处理 (2)
- CA认证 (2)
- VxWorks (2)
- 家庭/个人应用 (2)
- 生物技术 (2)
- 医药行业 (2)
- JavaScript (2)
- Ajax (2)
- 软件测试 (2)
- C/C++语言编程 (1)
- 接口技术 (1)
- 驱动程序 (1)
- 其他文档 (1)
- 教程资料 (1)
- 编辑器/阅读器 (1)
- 磁盘编程 (1)
- SCSI/ASPI (1)
- 传真(Fax)编程 (1)
- uCOS (1)
- FlashMX/Flex源码 (1)
- 百货/超市行业 (1)
- Windows CE (1)
- Windows Mobile (1)
- 并行计算 (1)
- 人物传记/成功经验 (1)
- RFID编程 (1)
- 认证考试资料 (1)
- MTK (1)
- android开发 (1)
- 手册 (1)
- 论文 (1)
- 其他 (1)
https://www.eeworm.com/dl/665/258577.html
matlab例程
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa.
For example,
>> project.name = MyProject
>> project.id = 1234
>> project.param.a = 3.1415
>> project.param.b = 42
become ...
https://www.eeworm.com/dl/511711.html
Linux/uClinux/Unix编程
struct
幫助學習作業系統的 一些資料 我需要獲得3的 積分 請有興趣者可看
https://www.eeworm.com/dl/532/358191.html
书籍源码
data struct algorithm and application in c++ 一书的课后答案源码
data struct algorithm and application in c++ 一书的课后答案源码
https://www.eeworm.com/dl/648/288827.html
单片机开发
NRF905驱动代码 // The content of this struct is nRF905 s initialize data. // CH_NO=1 433MHZ Normal O
NRF905驱动代码
// The content of this struct is nRF905 s initialize data.
// CH_NO=1 433MHZ Normal Opration,No Retrans RX,TX Address is 4 Bytes
// RX TX Payload Width is 32 Bytes Disable Extern Clock Fosc=16MHZ
// 8 Bits CRC And enable
https://www.eeworm.com/dl/654/370818.html
数据结构
Support Vector Machine Struct
Support Vector Machine Struct
https://www.eeworm.com/dl/619/418778.html
Linux/Unix编程
//结构 struct fb_fix_screeninfo finfo struct fb_var_screeninfo vinfo //打开设备 fd = open[
//结构
struct fb_fix_screeninfo finfo
struct fb_var_screeninfo vinfo
//打开设备
fd = open["/dev/fb0", O_RDWR]
if [!fd] {
printf["Cannot open framebuffer device.\n"]
exit[1]
}
//取得固定信息
if [ioctl[fd, FBIOGET_FSCREENINFO, &finfo]] {
printf["Erro ...