summaryrefslogtreecommitdiff
path: root/lib/utils.rb
blob: cccb5ea459ffb2457980982da8af3541606321f9 (plain)
1
2
3
4
5
6
7
8
9
module OpenTox
	module Utils
		# gauss kernel
		def self.gauss(sim, sigma = 0.3) 
			x = 1.0 - sim
			Math.exp(-(x*x)/(2*sigma*sigma))
		end
	end
end