码迷,mamicode.com
首页 >  
搜索关键字:matlab function    ( 59462个结果
Lua基础(二)——表
表 a = { } b = { x = 1, ["hello, "] = "world!" } a.astring = "ni, hao!" a[1] = 100 a["a table"] = b function foo() end function bar() end a[foo] = bar --分别穷举表a和b for k, v in pairs(a) do print(k, "=>",...
分类:其他好文   时间:2014-07-22 23:00:33    阅读次数:261
Lua进阶(一)——函数闭包、元表
函数闭包 function createCountdownTimer(second) local ms=second * 1000; local function countDown() ms = ms - 1; return ms; end return countDown; end timer1 = createCountdownTimer(1); for...
分类:其他好文   时间:2014-07-22 22:59:53    阅读次数:307
遮罩层
/*** 给元素增加遮罩层* @param maskLayer 遮罩层* @param maskObj 被遮罩元素*/function doMask(maskLayer,maskObj){ maskLayer.css("filter","alpha(opacity=60)"); maskLayer....
分类:其他好文   时间:2014-05-02 21:44:40    阅读次数:434
MATLAB内存管理
分类:其他好文   时间:2014-05-02 19:23:54    阅读次数:263
JQuery_2.1.0_日记 2014-5.1
JQuery工具方法. (1)$.isNumeric(obj)     此方法判断传入的对象是否是一个数字或者可以转换为数字.     isNumeric: function( obj ) {         // parseFloat NaNs numeric-cast false positives (null|true|false|"")        // ...bu...
分类:Web程序   时间:2014-05-02 19:17:27    阅读次数:352
jquery.validate自定义验证--成功提示与择要提示
1. 自定义验证--成功提示 1) 添加选项 errorClass: "unchecked", validClass: "checked", errorElement: "span", errorPlacement: function (error, element) { if (element.parent().find("span[for=""" + element.attr("id...
分类:Web程序   时间:2014-05-02 18:38:21    阅读次数:467
extjs desktop中桌面图标换行
在Desktop.js中扩展一个函数initShortCut : function() { var btnHeight = 64; var btnWidth = 64; var btnPadding = 30; var col = { index ...
分类:Web程序   时间:2014-05-02 13:28:43    阅读次数:490
LU分解(2)
接着上次LU分解的讲解,这次给出使用不同的计算LU分解的方法,这种方法称为基于GaxPy的计算方法。这里需要了解lapapck中的一些函数。lapack中有一个函数名为gaxpy,所对应的矩阵计算公式是:x = Gx + y; 对应的Matlab代码如下:function[L, U] =zgaxpy...
分类:其他好文   时间:2014-05-02 13:09:10    阅读次数:414
出错mlogc.c:32:23: error: curl/curl.h: No such file or directory
出现下列错误: mlogc.c:32:23: error: curl/curl.h: No such file or directory mlogc.c:1091: error: expected ‘)’ before ‘*’ token mlogc.c: In function ‘logc_init’:      出错原因:缺少libcurl-dev or libcurl-devel ...
分类:其他好文   时间:2014-05-02 10:50:35    阅读次数:371
ASP.NET MVC 动态加载 *.ascx
在Controller中: public ActionResult LoadFoo() { return PartialView("Foo", aModel); }Javascript: function loadFoo() { $.ajax({ url: "LoadFoo", success: f...
分类:Web程序   时间:2014-05-02 08:18:52    阅读次数:353
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!