0.1.0 • Published 10 months ago
@jovjs/num.js v0.1.0
num.js
A powerful numerical computing library for JavaScript/TypeScript, inspired by NumPy.
Features
- Multi-dimensional array operations
 - Linear algebra computations
 - Statistical functions
 - Broadcasting capabilities
 - Type-safe API with TypeScript support
 
Installation
npm install num.js
# or
yarn add num.jsUsage
import { array, linalg } from 'num.js';
// Create a 2D array
const matrix = array([[1, 2], [3, 4]]);
// Perform matrix operations
const determinant = linalg.det(matrix);Development
- Clone the repository:
 
git clone https://github.com/jovjs/num.js.git
cd num.js- Install dependencies:
 
npm install- Run tests:
 
npm test- Build the library:
 
npm run buildDocumentation
Full documentation is available at https://jovjs.github.io/num.js
Contributing
Contributions are welcome! Please read our Contributing Guide for details on our code of conduct and the process for submitting pull requests.
License
This project is licensed under the MIT License - see the LICENSE file for details.
0.1.0
10 months ago