NdArray
NdArray copied to clipboard
N dimensional array package for numeric computing in swift.
currently both matrices are always transformed to the same memory layout before multiplying. C and F contiguous matrices could be handled as is: ``` if A.isFContiguous { order = CblasColMajor...
when the old style index API is removed, varargs can be added: ``` /** slice access */ public subscript(slices: Slice...) -> NdArray { get { self[slices] } set { self[slices]...
To remove the need to convert to a slice expliclty `a[Slice(1)]` one can make `Slice` conform to `ExpressibleByIntegerLiteral`. This should not be done before the old index API is removed,...
The README is lacking docs on conversion from and to normal swift arrays.
only deep links work: https://dastrobu.github.io/NdArray/documentation/ndarray/ the top link does not work: https://dastrobu.github.io/NdArray/ relates to https://github.com/apple/swift-docc-plugin/issues/70