1.0.1 • Published 1 year ago

matrix-library v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Matrix-Library

Description

This is a very intuitive library for matrix manipulation. This follows most standards in mathematics to make it easy for mathematicians to use. This library is made for math enthusiasts to contribute to. This library aims to be approachable for beginners so no dependencies must be used.


Add to your project

This library is not yet available in npm so cloning it would be the best way to use it in your project.
Go to your project directory in your terminal with cd <project-directory> Then clone it with:

git clone https://github.com/alexander213213/matrix-library.git

Node Usage

If you are using node, then add the matrix object to module.exports by adding:

module.exports = Matrix

to the end the file.

Javascript Usage

If you are using javascript, then add the whole Matrix.js file to your index.html file by adding:

<script src="./matrix-library/Matrix.js"></script>

before your main script tag.


Contribution

Just add you functionality to the Matrix class in Matrix.js. Make sure to separate your methods with multiline comments in the format:

/*======
Method Name
Method Purpose
Method Usage
======*/