上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: vim是Unix/Linux系统最常用的编辑器之一,在保存文件时,我通常选择”:wq“,因为最开始学习vim的时候,就只记住了几个常用的命令;也没有细究命令的含义。 但是,最近我在编译代码时发现,在没有修改源文件的情况下,仅仅使用”:w... 阅读全文
posted @ 2015-05-09 02:29 vigorpush 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 在Linux中,最为常用的缩略语也许是“rc”它是“runcomm”的缩写――即名词“run command”(运行命令)的简写。rc”是任何脚本类文件的后缀,这些脚本通常在程序的启动阶段被调用,通常是Linux系统启动时。如/etc/rc(连接到/etc/rc.d/... 阅读全文
posted @ 2015-05-08 14:26 vigorpush 阅读(918) 评论(0) 推荐(0) 编辑
摘要: 使用man bash命令查看到的联机帮助文件中的相关解释如下:.bashrc - The individual per-interactive-shell startup file.这个文件主要保存个人的一些个性化设置,如命令别名、路径等。下面是个例子: # User... 阅读全文
posted @ 2015-05-08 03:46 vigorpush 阅读(2464) 评论(0) 推荐(0) 编辑
摘要: 打开/etc/bashrc,加入如下一行: alias ls=〃ls --color〃 下次启动bash时就可以像在Slackware里那样显示彩色的目录列表了,其中不同颜色的含义如下: 蓝色→目录 绿色→可执行文件 红色→压缩文件 浅蓝色→链接文件 灰... 阅读全文
posted @ 2015-05-08 03:41 vigorpush 阅读(956) 评论(0) 推荐(0) 编辑
摘要: Question:I accidentally found:cout << cout;The output is some address. What does this address mean, and why is it shown?I am looking t... 阅读全文
posted @ 2015-05-08 03:40 vigorpush 阅读(233) 评论(0) 推荐(0) 编辑
摘要: bashrc与profile的区别要搞清bashrc与profile的区别,首先要弄明白什么是交互式shell和非交互式shell,什么是login shell 和non-login shell。交互式模式就是shell等待你的输入,并且执行你提交的命令。这种模式被称... 阅读全文
posted @ 2015-05-08 03:37 vigorpush 阅读(109) 评论(0) 推荐(0) 编辑
摘要: fzeroRoot of nonlinear functioncollapse all in pageSyntaxx = fzero(fun,x0) examplex = fzero(fun,x0,options) examplex = fzero(problem) ... 阅读全文
posted @ 2015-04-15 08:58 vigorpush 阅读(195) 评论(0) 推荐(0) 编辑
摘要: Question:Given the code : A = [1 2 3; 3 2 1] B = A.^2The output : B = 1 4 9 9 4 1But if I do this : B = A^2The... 阅读全文
posted @ 2015-04-15 08:52 vigorpush 阅读(197) 评论(0) 推荐(0) 编辑
摘要: regression一般是统计学的回归回归,研究一个随机变量Y对另一个(X)或一组(X1,X2,…,Xk)变量的相依关系的统计分析方法.研究一 个或多个随机变量Y1 ,Y2 ,…,Yi与另一些变量X1、X2,…,Xk之间的关系的统计方法.又称多重回归分析.通常称Y1,... 阅读全文
posted @ 2015-04-11 07:54 vigorpush 阅读(209) 评论(0) 推荐(0) 编辑
摘要: IntroductionAuthor(s)David M. LanePrerequisitesVariance, Significance Testing, All Pairwise Comparisons among Means Learning Objective... 阅读全文
posted @ 2015-04-11 07:17 vigorpush 阅读(187) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页