skulpt_numpy
skulpt_numpy copied to clipboard
Possible Numpy Function Feature Liste
Meta issue - the following list contains possible functions that may be implemented in the near future.
Array Functions
- [x] numpy.transpose(axes) [use existing numpy.ndarray.tranpose()]
- [ ] numpy.add Docs (same as the one on ndarray)
- [x] numpy.dot Docs
- [x] numpy.vdot
- [ ] numpy.hstack Docs
- [ ] numpy.vstack Docs
- [ ] numpy.concatenate Docs
- [ ] numpy.split Docs
- [x] ndarray.dot
- [x] numpy.abs
- [x] numpy.mean
Array Creation Functions
- [x] numpy.array
- [x] numpy.empty
- [x] numpy.ones
- [x] numpy.zeros
- [x] numpy.identity Docs
- [ ] numpy.eye Docs
Logical Functions
Notice: We currently only support basic shape broadcasting!
- [x] numpy.less
- [x] numpy.greater
- [x] numpy.less_equal
- [x] numpy.greater_equal
- [x] numpy.equal
- [x] numpy.not_equal