Skip to content

yui-knk/narray

 
 

Repository files navigation

Numo::NArray - New NArray class library for Ruby/Numo (NUmerical MOdule)

Build Status

under development

Related Projects

Installation

Ubuntu, Debian

apt install -y git ruby gcc ruby-dev rake make
git clone git://github.com/ruby-numo/narray
cd narray
gem build numo-narray.gemspec
gem install numo-narray-0.9.0.1.gem

Quick start

An example

[1] pry(main)> require "numo/narray"
=> true
[2] pry(main)> a = Numo::DFloat.new(3,5).seq
=> Numo::DFloat#shape=[3,5]
[[0, 1, 2, 3, 4],
 [5, 6, 7, 8, 9],
 [10, 11, 12, 13, 14]]
[3] pry(main)> a.shape
=> [3, 5]
[4] pry(main)> a.ndim
=> 2
[5] pry(main)> a.class
=> Numo::DFloat
[6] pry(main)> a.size
=> 15

For more examples, check out this narray version of 100 numpy exercises.

numo-array status compared to numpy

https://github.com/ruby-numo/narray/wiki/Numo-vs-numpy

About

Ruby/Numo::NArray - New NArray class library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 85.8%
  • Ruby 14.1%
  • HTML 0.1%