Ruby

コンピュータ
Installing Ruby 1.8.7 on Ubuntu 14.04

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

公共用水域水質測定のpdfファイルの緯度経度の部分をコピペすると以下のような内容のやっかいなファイルが得られます.これを「緯度,経度」のテキストファイルに整理変換するRuby scriptです. ファイルの例 [cc] […]

続きを読む
コンピュータ
Set search path for Ruby scripts

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

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 […]

続きを読む