Sha256: 57b65bdeae8642b1b7ebc84f4bc063c44fdefe432bb38999e55bb9a0ddd35d48
Contents?: true
Size: 1005 Bytes
Versions: 4
Compression:
Stored size: 1005 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 // // == nmatrix_atlas.cpp // // Main file for nmatrix_atlas extension // #include <ruby.h> #include "nmatrix.h" #include "math_atlas/inc.h" #include "data/data.h" extern "C" { void nm_math_init_atlas(); void Init_nmatrix_atlas() { nm_math_init_atlas(); } }
Version data entries
4 entries across 4 versions & 1 rubygems