1. PCAprincipal components analysis主要是通过对协方差矩阵Covariance matrix进行特征分解,以得出数据的主成分(即特征向量eigenvector)与它们的权值(即特征值eigenvalue)。PCA是最简单的以特征量分析多元统计分布的方法。其结果可以理...
分类:
其他好文 时间:
2014-07-19 18:05:19
阅读次数:
190
A method for optimizing the throughput of TCP/IP applications by aggregating user application data and consolidating multiple TCP/IP connection stream...
分类:
Web程序 时间:
2014-07-19 17:17:57
阅读次数:
428
今天偶然发现post提交与get提交的一个小知识点,记下来以后可以看看。 将form表单的method的设置为get后,通过url传递的参数将不会被传递到服务器,例如1.ashx?a=123,的a=123在后台就读不出来; 但是如果将method设置为post后,在后台仍然可以读到a=12...
分类:
其他好文 时间:
2014-07-19 09:25:03
阅读次数:
221
首先搞清楚这句话,在 Ruby 中,方法分为
public、private
和 protected
三种,只有 public
方法才能作为控制器的动作。
我的出错的代码如下:
controlle
class ArticlesController < ApplicationController
def new
end
def create
params.permit...
分类:
其他好文 时间:
2014-07-18 18:14:43
阅读次数:
295
ylbtech-JavaScript-util: api.jsAPI 代理接口1.A,JS-效果图返回顶部 1.B,JS-Source Code(源代码)返回顶部1.B.1, m.yintai/*调用接口*/function call(methodName, method, ver, data, s...
查看分区情况SELECT * FROM information_schema.PARTITIONS WHERE table_name='table_name';PARTITION_NAME:分区的名称PARTITION_METHOD:分区的类型TABLE_ROWS:分区数据条数RANGE分区:cre...
分类:
数据库 时间:
2014-07-18 14:23:09
阅读次数:
321
显然错误的原因是没有重写servlet的doGet方法,只是覆盖了doPost的方法。解决的方法很简单:1 public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IO....
分类:
Web程序 时间:
2014-07-18 14:16:22
阅读次数:
266
In one embodiment, a method includes sending to a mobile client computing device a first notification through a real-time push service, the first noti...
分类:
其他好文 时间:
2014-07-17 22:06:41
阅读次数:
603
1. Input Method: 1.1.用root登录 ,或su root 1.2.yum install "@Chinese Support" 1.3.exit 1.4.回到桌面,system->preferences->input method 1.5.如果没有,先注销一下。 1....
分类:
其他好文 时间:
2014-07-17 21:32:59
阅读次数:
233
(非原创)在jsp页面中使用request.getRealPath("/")时出现下列警告:The method getRealPath(String) from the type ServletRequest is deprecated出现该警告,该方法已经不能使用了Deprecated. As ...
分类:
Web程序 时间:
2014-07-17 18:10:26
阅读次数:
248