Top Level Namespace

Defined Under Namespace

Modules: Flukso Classes: PAES_Analysis, RExperimentAnalysis, SA_Analysis

Instance Method Summary collapse

Instance Method Details

#generateRandomStringObject

This file is part of Flukso4R © 2010 Mathias Dalheimer, [email protected]

Flukso4R is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version.

CGWG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with CGWG; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA



17
18
19
20
# File 'lib/flukso/plots.rb', line 17

def generateRandomString()
  chars = ("a".."z").to_a + ("1".."9").to_a 
  return Array.new(16, '').collect{chars[rand(chars.size)]}.join
end