搜索:Times
找到约 197 项符合「Times」的查询结果
结果 197
按分类筛选
- 全部
- 单片机编程 (22)
- 技术资料 (18)
- 电源技术 (14)
- 书籍 (12)
- 模拟电子 (12)
- 源码 (10)
- 其他 (10)
- 无线通信 (7)
- 可编程逻辑 (5)
- 其他文档 (4)
- PCB相关 (3)
- 其他书籍 (3)
- Linux/Unix编程 (3)
- Java编程 (3)
- 数学计算 (3)
- 数据结构 (3)
- matlab例程 (3)
- 软件 (2)
- 经验 (2)
- 设计相关 (2)
- 数值算法/人工智能 (2)
- 资料/手册 (2)
- 测试测量 (2)
- Matlab (2)
- 嵌入式综合 (2)
- 图形图像 (2)
- 压缩解压 (2)
- Internet/网络编程 (2)
- 通讯编程文档 (2)
- 单片机开发 (2)
- 文章/文档 (2)
- 软件设计/软件工程 (2)
- SQL Server (2)
- 教程 (1)
- 电路图 (1)
- 手册 (1)
- 笔记 (1)
- C/C++语言编程 (1)
- 接口技术 (1)
- 学术论文 (1)
- 仿真技术 (1)
- 集成开发环境源码 (1)
- 技术教程 (1)
- 软件工程 (1)
- 开发工具 (1)
- ARM (1)
- 工控技术 (1)
- 电子书籍 (1)
- 教程资料 (1)
- autocad教程 (1)
- 游戏 (1)
- 编译器/解释器 (1)
- 网络 (1)
- 嵌入式/单片机编程 (1)
- 嵌入式Linux (1)
- VxWorks (1)
- VHDL/FPGA/Verilog (1)
- 系统设计方案 (1)
- VC书籍 (1)
- 其他嵌入式/单片机内容 (1)
- 行业发展研究 (1)
- Jsp/Servlet (1)
- VIP专区 (1)
https://www.eeworm.com/dl/663/350326.html
VHDL/FPGA/Verilog
VHDL examples for 16x16 times, if need detail pls let me know
VHDL examples for 16x16 times, if need detail pls let me know
https://www.eeworm.com/dl/633/405273.html
Java编程
A small java game, the player needs to guess a number from 1 to 100 in the earliest times.
A small java game, the player needs to guess a number from 1 to 100 in the earliest times.
https://www.eeworm.com/dl/633/200463.html
Java编程
One-channel queuing system simulator (M/M/1) * Arrival and service times are random and distributed
One-channel queuing system simulator (M/M/1)
* Arrival and service times are random and distributed exponetially.
*
* The simulator is time-slice-driven, i.e. the system model is being
* run at discrete time points, with constant increments deltaT.
* At each such time moment, p ...
https://www.eeworm.com/dl/534/293441.html
其他
written as well. 8.Strong leadership skills to keep the team motivated and focused at all times to
written as well.
8.Strong leadership skills to keep the team motivated and focused at all times to meet customer deliverables.
9. Experience in managing a team of developers as their technical leader
Nice to have requirements:
Proven experience on Symbian and/Windows mobile, ...
https://www.eeworm.com/dl/653/342537.html
嵌入式Linux
This research project evaluates startup times of the linux boot process from power-on until user log
This research project evaluates startup times of the linux boot process from power-on until user login.
Time consuming parts of the boot process are investigated and methods how to speed up the whole
process are discussed.
https://www.eeworm.com/dl/534/428355.html
其他
FileTimeSpy: Often times you may need to touch a file by setting its Created, Modified or Last Acces
FileTimeSpy: Often times you may need to touch a file by setting its Created, Modified or Last Accessed date and time. This sample shows how to do it.
https://www.eeworm.com/dl/534/252692.html
其他
Introduction Some times it is required that we build a shared library (DLL) from an m-file. M-files
Introduction
Some times it is required that we build a shared library (DLL) from an m-file. M-files are functions that are written in Matlab editor and can be used from Matlab command prompt. In m-files, we employ Matlab built-in functions or toolbox functions to compute somethin ...
https://www.eeworm.com/dl/665/491690.html
matlab例程
SIMMM1 simulate a M/M/1 queueing system. Poisson arrivals of intensity lambda. Poisson service times
SIMMM1 simulate a M/M/1 queueing system. Poisson arrivals of intensity lambda. Poisson service times S of intensity mu.
https://www.eeworm.com/dl/534/406906.html
其他
//--- --- --- - 音乐简谱播放器--- --- --- - /*奏乐程序使用说明 调用方式: sing fname [speed [times]] 文件名 速度(拍/分) 遍
//--- --- --- - 音乐简谱播放器--- --- --- -
/*奏乐程序使用说明
调用方式: sing fname [speed [times]]
文件名 速度(拍/分) 遍数
简谱文件格式:
第1行: 曲名 节拍 调号
第2行-- 乐谱 (空格,换行无意义,但不得插在一个"音描述"内部)
记号:
* 节拍,调号,小节分隔符,终止符,升音符,中音音高,休止符, ...
https://www.eeworm.com/dl/654/162978.html
数据结构
实现阿克曼函数并统计递归调用次数 Counting times of recursion calling 1. 问题描述 定义阿克曼递归函数: ACK(0,n)=n+1 n>=0
实现阿克曼函数并统计递归调用次数
Counting times of recursion calling
1. 问题描述
定义阿克曼递归函数:
ACK(0,n)=n+1 n>=0
ACK(m,0)=ACK(m-1,1) m>=1
ACK(m,n)=ACK(m-1,ACK(m,n-1)) m,n>0
2. 基本要求
读入m、n,输出ACK(m,n)的值,并统计递归调用次数。 ...