github.com/aca-labs/numcry
1.0.1 / published Oct 24, 2024 / repository
Like NumPy, but slower!
NumCry
Like NumPy, but slower!
Useful methods for numerical computing in crystal-lang.
Installation
-
Add the dependency to your
shard.yml:dependencies: numcry: github: aca-labs/numcry -
Run
shards install
Usage
require "numcry"
Contributing
- Fork it (https://github.com/aca-labs/numcry/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Contributors
- Kim Burgess - creator and maintainer
API
- Enumerable(T)
The
Enumerablemixin provides collection classes with several traversal, searching, filtering and querying methods. - Iterator(T)
An
Iteratorallows processing sequences lazily, as opposed toEnumerablewhich processes sequences eagerly and produces anArrayin most of its methods. - Numcry