Simulink仿真分析主要分为连续系统和离散系统仿真分析,一般的仿真分析都是这两类的混合,称为混合系统仿真分析。这里介绍两个比较常用的连续系统和离散系统仿真分析模块Unite Delay 和 Zero-Order Hold模块上图表示了两个模块的功能,显而易见Zero-Order Hold是对连续...
分类:
其他好文 时间:
2015-01-10 23:35:49
阅读次数:
316
An awkward title, but that’s exactly what we’re going to do. For some time, I was looking for a way to push code to production systems with zero downt...
分类:
其他好文 时间:
2015-01-10 23:35:03
阅读次数:
292
开发中经常会用到复制的功能,在 IE 下实现比较简单。但要想做到跨浏览器比较困难了。本文将介绍一个跨浏览器的库类 Zero Clipboard 。它利用 Flash 进行复制,所以只要浏览器装有 Flash 就可以运行,而且比 IE 的 document.execCommand("Copy") 更加...
分类:
Web程序 时间:
2015-01-10 18:04:16
阅读次数:
198
linux socket中select()函数以及FD_ZERO FD_SET FD_CLR FD_ISSET...
分类:
系统相关 时间:
2015-01-10 15:15:11
阅读次数:
250
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The matching should cover the entire input st...
分类:
其他好文 时间:
2015-01-08 20:17:55
阅读次数:
216
Regular Expression MatchingImplement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more o...
分类:
其他好文 时间:
2015-01-07 21:58:44
阅读次数:
141
http://www.tutorialspoint.com/sqlite/sqlite_installation.htmThe SQLite is famous for its great feature zero-configuration, which means no complex setu...
分类:
数据库 时间:
2015-01-07 12:49:39
阅读次数:
309
本文翻译自国外著名IOS源码教学商业网站raywenderlich 的IOS Game Start Kits三件套之一的Platformer Game/平台动作游戏的前奏曲,另一个是Beat'Em up Game/横版格斗游戏,作者是国外著名游戏开发专家Jake Gundersen,曾参与开发过SFC时代的洛克人X系列。
还记得超级马里奥的青青草地蓝天白云吗?还记得曾让人爱恨交加又不屈不挠让人不忍放弃的洛克人ZERO吗,我们燃起小宇宙一招龙炎刃击败最终Boss的场面是曾多么热血澎湃!这些感动一代人的游戏陪伴...
分类:
其他好文 时间:
2015-01-07 00:40:22
阅读次数:
3233
题目:
Given an array S of n integers, are there elements a, b, c in S such that a + b + c =
0? Find all unique triplets in the array which gives the sum of zero.
Note:
Elements in a tripl...
分类:
编程语言 时间:
2015-01-06 10:06:42
阅读次数:
130
介绍
在项目开发中,异常处理是不可或缺的。异常处理帮助人们debug,通过更加丰富的信息,让人们更容易找到bug的所在。异常处理还可以提高程序的容错性。
>>> 1/0
Traceback (most recent call last):
File "", line 1, in
1/0
ZeroDivisionError: division by zero上例中输入一...
分类:
编程语言 时间:
2015-01-05 09:39:07
阅读次数:
171