Apatite is a fundamental package for scientific computing with Crystal
Go to file
Chris Watson 2cb01cd404 Started construction 🚧 2019-05-06 11:35:26 -07:00
spec Initial commit 2019-05-04 18:34:31 -07:00
src Started construction 🚧 2019-05-06 11:35:26 -07:00
.editorconfig Initial commit 2019-05-04 18:34:31 -07:00
.gitignore Initial commit 2019-05-04 18:34:31 -07:00
.travis.yml Initial commit 2019-05-04 18:34:31 -07:00
LICENSE.md Update LICENSE and README 2019-05-04 19:33:41 -07:00
README.md Update README 2019-05-04 19:35:15 -07:00
shard.yml Initial commit 2019-05-04 18:34:31 -07:00

README.md

Apatite

Apatite is a fundimental package for scientific computing in Crystal. If that sounds like a modified version of the first line from the NumPy homepage, that's because it is. Apatite has (ok, will have) all of the goodness of NumPy sitting atop the blazing speed and beautiful syntax of Crystal.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      apatite:
        github: watzon/apatite
    
  2. Run shards install

Usage

require "apatite"

TODO: Write usage instructions here, but first write the library...

Roadmap

  • Apetite
    • Array Objects
    • Routines
      • Binary Operations
      • String Operations
      • FFT (see numpy.fft)
      • Financial Functions
      • LinAlg (see numpy.linalg)
      • Logic Functions
      • Mathematical Functions
      • Matlib (see numpy.matlib)
      • Padding Arrays
      • Polynomials
      • Random (see numpy.random)
      • Sorting, Searching, and Counting
      • Statistics

Contributing

  1. Fork it (https://github.com/watzon/apatite/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