0.1.0 • Published 10 months ago

@jovjs/num.js v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

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

Usage

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

  1. Clone the repository:
git clone https://github.com/jovjs/num.js.git
cd num.js
  1. Install dependencies:
npm install
  1. Run tests:
npm test
  1. Build the library:
npm run build

Documentation

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.