UNPKG

ndarray-ts

Version:

A basic N-dimensional array library in TypeScript, similar to NumPy.

7 lines (6 loc) 154 B
/** * @file index.ts * @description Main entry point for the ts-ndarray package. * Exports the NdArray class. */ export { NdArray } from "./ndArray";