ruby-numo / numo-narray

Ruby/Numo::NArray - New NArray class library
http://ruby-numo.github.io/narray/
BSD 3-Clause "New" or "Revised" License
415 stars 41 forks source link

Can't load 0-dimensional binary string #167

Closed ankane closed 3 years ago

ankane commented 4 years ago

Raises Numo::NArray::DimensionError: too long or empty shape (0)

require "numo/narray"

x = Numo::UInt8.from_binary("\x00", [1])
p x

x = Numo::UInt8.from_binary("\x00", [])
p x # fails
ankane commented 3 years ago

Just noticed this was added in 0.9.1.9. Thanks @masa16!