2013-06-01から1ヶ月間の記事一覧

Usage for bundler

http://rubyonrails.gachinko.org/tag/gemfile/ gem install bundler --pre bundle install https://sites.google.com/site/shimesabanote2/linux/centos/ruby_on_rails/raisl_install sudo yum --enablerepo=remi,remi-test -y install ruby-develhttp://bl…

Install mysql in CentOS1.6

From http://blog.mizoshiri.com/archives/166 # yum -y install mysql-server Change the character sets datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock # Default to using old password format for compatibility with mysql 3.x # clients (…

Install ruby 1.9.x in Cent OS 6.4

Ruby which can be installed by yum is 1.8.x for CentOS 6.4. So, we install ruby 1.9.x from sources. 1. Install epel. Epel is is Extra Packages for Enterprise Linux. rpm -ivh epel-release-5-4.noarch.rpm http://www.tooyama.org/yum-addrepo-ep…

特定の値をすべてほかの値で置き換える

20を4に置き換える。 match が b match であり,b.match でないことに注意 scala> a res9: Array[Int] = Array(1, 20, 20, 30, 40, 50) scala> a.map{i=> i match{case 20 => 4;case _ => i;}}; res10: Array[Int] = Array(1, 4, 4, 30, 40, 50)

scalaで内積

var a=List(1,2,3,4); var v=List(2,3,4,5); a.zip(v).map{i=> i._1*i._2;}.sum res15: Int = 40

cygwinでMy sql の導入から入門まで

まず、mysqlを導入. apt_cygのインストール http://d.hatena.ne.jp/vivid_skid/20120702/1341197890 wget.exe http://apt-cyg.googlecode.com/svn/trunk/apt-cyg mv apt-cyg /bin/ chmod.exr +x /bin/apt-cyg 次にmysqlをとってくる http://takuya-1st.hate…

ロバストなべき分布の指数の推定

http://www.wolframalpha.com/input/?i=int%5Blog%28x%29*x%5E%28-alpha%29%2Cx%5D 0=+C Robust parameter estimation with a small bias against heavy contamination Hironori Fujisawa, , Shinto Eguchi http://www.sciencedirect.com/science/article/pi…

ポアソン分布の差分の分布 Skellam分布 Skellam distribution

ポアソン分布の差分の分布. Skellam distribution http://en.wikipedia.org/wiki/Skellam_distribution #library(skellam) library(VGAM) v1<-rpois(100000,lambda=1.3) v2<-rpois(100000,lambda=2.2) q<-v2-v1 x<-as.numeric(names(table(q))) #PDF plot(x…

http://monoist.atmarkit.co.jp/mn/articles/1206/06/news007.html http://monoist.atmarkit.co.jp/mn/articles/1008/30/news100.html モノづくりは科学とは違います。理論の解明が目的ではありません。モノづくりには、理論より具体的な手段の創造が必要と…

Rで線形近似

R

Rで線形近似 x<-1:10 y<-x^2 plot(x,y) points(x,predict(lm(x~y)),col=2)

平滑化スプライン法と平滑化のまとめ

[1]平滑化スプライン法と平滑化のまとめ http://www.stat.math.keio.ac.jp/under.grad/data.analysis/2010/lecture/DS_Lec9_20101213.pdfroughness penalty)[2]Bスプラインと情報量基準 http://www.ism.ac.jp/editsec/toukei/pdf/47-2-359.pdf [2]p362の2.6…