package notebook;import java.util.ArrayList;
import java.util.HashSet;class Value {
private int i; public void set(int i) {
this.i = i;
}
public int get() {
r...
分类:
编程语言 时间:
2015-08-11 16:17:24
阅读次数:
126
package notebook;import java.util.ArrayList;public class NoteBook {
private ArrayList notes =new ArrayList(); //创建容器类的对象notes public void add(String s)
{//添加笔记
notes.add(s);
}...
分类:
编程语言 时间:
2015-08-11 12:17:14
阅读次数:
111
frequentism-and-bayesianism-chs-iv频率主义与贝叶斯主义 IV:Python的贝叶斯工具这个notebook出自Pythonic Perambulations的博文。The content is BSD licensed.这个系列共4个部分:中文版Part IPart...
分类:
其他好文 时间:
2015-08-09 20:25:39
阅读次数:
205
frequentism-and-bayesianism-chs-ii频率主义 vs 贝叶斯主义 II:当结果不同时这个notebook出自Pythonic Perambulations的博文. The content is BSD licensed.这个系列共4个部分:中文版Part IPart I...
分类:
其他好文 时间:
2015-08-09 20:22:53
阅读次数:
143
frequentism-and-bayesianism-chs-iii频率主义 vs 贝叶斯主义 III:置信(Confidence)与可信(Credibility),频率主义与科学,不能混为一谈¶这个notebook出自Pythonic Perambulations的博文 . The conten...
分类:
其他好文 时间:
2015-08-09 20:12:59
阅读次数:
152
就几个步骤,很简单。 apt-get?install?ipython-notebook
ipython?notebook?--pylab?inline?--ip?0.0.0.0
用浏览器访问对应的地址即可。。。...
分类:
编程语言 时间:
2015-08-06 13:39:14
阅读次数:
216
在使用CentOS6.6X64系统时,由于系统自带的python版本为2.6.6,而2.x版本中当前普遍使用的为2.7版本,所以我们要对系统的python版本做一个升级。ipython是一个增强版的shell,支持TAB补全,自动缩进等供能,比默认的pythonshell要好用很多。下面主要介绍如何升级python版本,安..
分类:
编程语言 时间:
2015-08-05 22:39:17
阅读次数:
378
安装(MAC)直接运行:brew install python3输入:python3 --version,查看验证安装是否成功 (一定是python3)Python解释器CPython官网下载的安装包中,会自带此解释器。也是使用最多的解释器。使用C编写的解释器IPython使用在CPython的基础...
分类:
编程语言 时间:
2015-07-30 23:15:55
阅读次数:
209
笔记本控件,可以让用户标签式地切换多个界面。当我们需要多窗口切换时,使用笔记本控件是一个明智的选择。
笔记本控件的创建:
GtkWidget *gtk_notebook_new(void);
返回值:笔记本控件指针
设置页标签的位置:
void gtk_notebook_set_tab_pos( GtkNotebook *n...
分类:
其他好文 时间:
2015-07-30 11:32:15
阅读次数:
384
Notes on the Dirichlet Distribution and Dirichlet ProcessIn[3]:%matplotlib inlineNote:I wrote this post in an IPython notebook. It might be rendered b...
分类:
其他好文 时间:
2015-07-29 21:12:42
阅读次数:
103