Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 170 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 170 Bytes

Matrix

A class for Matrix computing.

import { Matrix } from "https://deno.land/x/math/mod.ts";

const matrix = new Matrix([
  [1, 2, 3],
  [4, 5, 6]
]);