Sha256: 04f7ec0fb04ca4ba753fe521cf9ac8e3725340fa9d226f21bfd2366c9de92aa1
Contents?: true
Size: 1018 Bytes
Versions: 1
Compression:
Stored size: 1018 Bytes
Contents
#-- # = NMatrix # # A linear algebra library for scientific computation in Ruby. # NMatrix is part of SciRuby. # # NMatrix was originally inspired by and derived from NArray, by # Masahiro Tanaka: http://narray.rubyforge.org # # == Copyright Information # # SciRuby is Copyright (c) 2010 - 2014, Ruby Science Foundation # NMatrix is Copyright (c) 2012 - 2014, John Woods and the Ruby Science Foundation # # Please see LICENSE.txt for additional copyright notices. # # == Contributing # # By contributing source code to SciRuby, you agree to be bound by # our Contributor Agreement: # # * https://github.com/SciRuby/sciruby/wiki/Contributor-Agreement #++ class NMatrix # Note that the format of the VERSION string is needed for NMatrix # native IO. If you change the format, please make sure that native # IO can still understand NMatrix::VERSION. #VERSION = "0.1.0" module VERSION MAJOR = 0 MINOR = 1 TINY = 0 PRE = "rc3" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nmatrix-0.1.0.rc3 | lib/nmatrix/version.rb |