#matrix_vector
-A python package for matrices and vectors operations. #Installation
-pip install matrix_vector
#Features
-This package implements n-dimensional vectors and matrices and operations with them.
#Class Vector:
- add and substitute vectors;
- add, substitute, multiply and divide vector with number;
- access elements with [] operatop;
- scalar and vector product;
- normalize vector;
- multiply vector and matrix
#Class Matrix:
- add and substitute matrices;
- add, substitute, multiply and divide number to matrix elements;
- multiply matrices with sutable dimensions;
- access matrix elements with [][] operator;
- transpose a matrix;
- find determinant of a matrix;
- inverse a matrix;