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

How to convert Ruby Array to NArray ? #132

Closed kojix2 closed 5 years ago

kojix2 commented 5 years ago

Hello.

How do we convert a Ruby Array to Numo:: NArray?

The ways I know is,

Numo::SFloat[*ar]
Numo::SFloat.cast(ar)

Is there any other recommended way?

NArray was designed for scientific computing. But with the success of Rumale, it's likely that more Web developers will use NArray in the future. So I want to be clear about how to convert a Ruby Array to NArray.

masa16 commented 5 years ago

Yes, that's all.

kojix2 commented 5 years ago

Thank you for your explanation!