NdArray icon indicating copy to clipboard operation
NdArray copied to clipboard

N dimensional array package for numeric computing in swift.

Results 8 NdArray issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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.

needs documentation

Singular value decomposition would be quite useful as well.

enhancement

Compute eigenvalues and/or eigenvectors on a `Matrix`.

enhancement

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