Carpenters keep moving forward
2009年8月22日星期六
Round up numbers in Matlab, leaving given numbers of digits after dot
The easiest way is to try to
num = num*10;
num = round(num);
num = num / 10;
kind of thing...
Other way is:
the
vpa
function.
2009年8月20日星期四
Install the GUI in R for Ubuntu
First,
sudo apt-get install r-base
Then, type sudo R in command line to invoke R. Type in
install.packages('Rcmdr')
then
q()
Then use R to invoke it,
library(Rcmdr).
较新的博文
较旧的博文
主页
订阅:
博文 (Atom)