NDArray
NDArray copied to clipboard
A Multidimensional Array library for Swift
feature request: concat
feature request: reshape
would it be possible to implement loading/saving data from/to CSV/JSON?
All shape related information should be handled by this type.
# NDArrayProtocol For a multidimensional array library its extremely important to be able to generate specialized implementation of its operations for a varied amount of cases while still being able...
1. Ordering things like `.newAxis`, `squeezeAxis` and `.index` is not being dealt with right now, the solution is to order by index in reverse. 2. `.newAxis` is probably valid at...
Currently its `[Scalar]` because we are assuming that the copy-on-write semantics will prevent data from been copied when creating array "views" (indexing, slicing, etc) which just passes the `data` `Array`...
- [ ] Document explaining the basic architecture of `NDArray` - [ ] Document codebase