summaryrefslogtreecommitdiff
path: root/lib/utils.rb
blob: 2716f45a6ea641887f8e501fbfea056c07a3ecc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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