matrix_extend
Matrix implementation in crystal-lang.
Installation
Add this to your application's shard.yml
:
dependencies:
matrix_extend:
github: Nephos/matrix_extend
Usage
Don't hesitate to read the specs. Every methods are described there.
require "matrix_extend"
include MatrixExtend
m1 = Matrix(Int32).new(3, 2, 1)
m2 = Matrix(Int32).new(2, 3, 0)
# => matrix with 3 lines, 2 columns, filled with 1
m2 * m1
Development
No particular development directives.
Contributing
- Fork it ( https://github.com/Nephos/matrix_extend/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
- Nephos Arthur Poulet - creator, maintainer