Introduction to Bode Plot
神马东东是波特图?
A Bode plot /?bo?di/ is
a graph of the transfer function of
a linear, time-invariant system versusfrequency,
plotted with a log-fre...
分类:
其他好文 时间:
2014-05-26 05:32:15
阅读次数:
301
第一种:内嵌在html节点中
第二种:调用方法
function ChangeBackground()
{
document.body.sty...
分类:
编程语言 时间:
2014-05-26 05:01:39
阅读次数:
250
Checkbox类:
1.实现checkbox的全选功能
//全选checkbox:1、当全选checkbox勾选,子checkbox(name为'ids'的checkbox)自动全部勾选
// 2、当全选checkbox取消勾选,子checkbox自动全部取消勾选
function checkAll(){
if($("#checkall")[0].checked){...
分类:
编程语言 时间:
2014-05-24 21:03:13
阅读次数:
376
问一、引入工厂,解决重复代码
前面已经提到,JS中创建对象的方法,不难发现,基本的创建方法中,创建一个对象还算简单,如果创建多个类似的对象的话就会产生大量重复的代码。
解决:工厂模式方法(添加一个专门创建对象的方法,传入参数避免重复)
function createObject(name,age){...
分类:
Web程序 时间:
2014-05-24 20:46:42
阅读次数:
328
当 Lua 调用 C 函数的时候,使用和 C 调用 Lua 相同类型的栈来交互。C 函数从栈中获取她的参数,调用结束后将返回结果放到栈中。为了区分返回结果和栈中的其他的值,每个 C 函数还会返回结果的个数(the function returns (in C) the number of results it is leaving on the stack.)。
// lua...
分类:
编程语言 时间:
2014-05-24 19:37:41
阅读次数:
372
123/** * 返回跟单信息 * * @return array 返回跟单相关信息 *
@author ZP 2013-12-17 11:55:16 * @modify YLP 2014-5-13 17:30:29 未采购和未到货不需要同时显示明细
*/function get_order_tra...
分类:
其他好文 时间:
2014-05-24 12:37:41
阅读次数:
309
Quick Referenceinsmodmodprobermmod User-space
utilities that load modules into the running kernels and remove them.#include
module_init(init_function)...
分类:
其他好文 时间:
2014-05-24 12:05:39
阅读次数:
286
很多人觉得jquery、ext等一些开源js源代码
十分的晦涩,读不懂,遇到问题需要调试也很费劲。其实我个人感觉主要是有几个方面的原因:1、对一些js不常用的语法、操作符不熟悉2、某个function中又嵌套了一些内部的function,使得整个代码的层次结构不像java代码那么清晰。3、js中允许...
分类:
Web程序 时间:
2014-05-24 12:04:41
阅读次数:
446
function a(){ new Ext.Panel({ title: "面板用法", width:
300, height: 200, renderTo: Ext.getBody(), html: "面板主区域", ...
分类:
其他好文 时间:
2014-05-24 11:49:19
阅读次数:
275
var cat ={};cat.mouse = function(){var
b="1111"};var dog = cat;console.log(dog);console.log(dog.mouse);dog.mouse =
function(){var b="2222"};dog.hat="....
分类:
其他好文 时间:
2014-05-24 09:59:18
阅读次数:
246