neuro-matrix

v0.5.6 • by SciCompute Collective

A lightweight and fast library for numerical computing and matrix operations in Swalang.

Installation

$ swalang install neuro-matrix

Documentation

Neuro Matrix

Perform complex numerical operations with an easy-to-use API.

Usage

import { matrix } from 'neuro-matrix';

let a = matrix([[1, 2], [3, 4]]);
let b = matrix([[5, 6], [7, 8]]);

// Matrix multiplication
let result = a.dot(b);
result.print();