Ruby
Installing Ruby 1.8.7 on Ubuntu 14.04
2014-11-03
When you install ruby, the version would be 1.9 by default. It is rather tough to install ruby 1.8.7. See the […]
緯度経度ファイルを処理するRuby script
2014-10-27
公共用水域水質測定のpdfファイルの緯度経度の部分をコピペすると以下のような内容のやっかいなファイルが得られます.これを「緯度,経度」のテキストファイルに整理変換するRuby scriptです. ファイルの例 [cc] […]
Set search path for Ruby scripts
2012-07-05
Suppose that the search path is ~/ruby. Add the following line in .bashrc. export RUBYPATH=~/ruby Put ruby scr […]
Find index for the minimum value of NArray element in Ruby
2012-07-04
Suppose that a[1.1, 1.3, 0.2, 3.1] is a NArray. a.min #=> 0.2 a.eq(a.min) #=> [0, 0, 1, 0] a.eq(a.min).w […]