ndarray-ts
Version:
A basic N-dimensional array library in TypeScript, similar to NumPy.
11 lines (10 loc) • 371 B
JavaScript
;
/**
* @file index.ts
* @description Main entry point for the ts-ndarray package.
* Exports the NdArray class.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.NdArray = void 0;
var ndArray_1 = require("./ndArray");
Object.defineProperty(exports, "NdArray", { enumerable: true, get: function () { return ndArray_1.NdArray; } });