2011年8月8日

pathon math lib

摘要: numpy + SciPy + IPython + matplotlib- example of plot: http://matplotlib.sourceforge.net/import matplotlib.pyplot as pltimport numpy as npx,y = np.random.randn(2,100)fig = plt.figure()ax1 = fig.add_subplot(211)ax1.xcorr(x, y, usevlines=True, maxlags=50, normed=True, lw=2)ax1.grid(True)ax1.axhline(0, 阅读全文

posted @ 2011-08-08 21:16 cutepig 阅读(566) 评论(0) 推荐(0)

分布式文件系统

摘要: Cache:memcached, MemcacheDB. 分布式文件系统:GFS, Hadoop, Hive. NoSQL:BigTable, HBase, MongoDBhttp://www.programmer.com.cn/7624/http://en.wikipedia.org/wiki/NoSQLhttp://sebug.net/paper/databases/nosql/Nosql.html 阅读全文

posted @ 2011-08-08 13:31 cutepig 阅读(259) 评论(0) 推荐(0)

java q

摘要: 1.选择题public class Test{ public static void main(String [] args) { static int num [] =new int[10]; System.out.println(num[10]); }}下面说法正确的是:A.程序编译失败。B 程序编译成功,运行时抛出异常。C 程序编译成功,运行时输出结果为0。D 如果将System.out.println(num[10])修改为System.out.println(num[9])输出结果将为0。2. interface Animal{ public void test();}public 阅读全文

posted @ 2011-08-08 13:26 cutepig 阅读(528) 评论(0) 推荐(0)

导航