evhub / rabbit

Rabbit is a modern, functional programming language built on top of Python.
13 stars 1 forks source link

Allow for arbitrary N-dimensional arrays #85

Open evhub opened 10 years ago

evhub commented 10 years ago

Currently, only 2-arrays (matrices) and 1-arrays (lists) are supported. This should be extended into arbitrary dimensions, and, as part of this, lists should be implemented just as 1-arrays, rather than as a fake diagonal matrix.

evhub commented 10 years ago

Best way to do this would probably be to use NumPy in some form: http://www.numpy.org/#