package

github.com/aca-labs/numcry

1.0.1 / published Oct 24, 2024 / repository

Like NumPy, but slower!

NumCry

GitHub release Build Status Docs

Like NumPy, but slower!

Useful methods for numerical computing in crystal-lang.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      numcry:
        github: aca-labs/numcry
  2. Run shards install

Usage

require "numcry"

Contributing

  1. Fork it (https://github.com/aca-labs/numcry/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

API

  • Enumerable(T)

    The Enumerable mixin provides collection classes with several traversal, searching, filtering and querying methods.

  • Iterator(T)

    An Iterator allows processing sequences lazily, as opposed to Enumerable which processes sequences eagerly and produces an Array in most of its methods.

  • Numcry