Metadata-Version: 2.1
Name: gv-linalg
Version: 0.1.7
Summary: Some tools for accessing numpy using Sage-like syntax
Home-page: https://github.com/davidaustinm/MTH205-W20
Author: David Austin
Author-email: david.austin.m@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: matplotlib (>=3.8.0,<4.0.0)
Requires-Dist: numpy (>=2.0,<3.0)
Requires-Dist: pandas (>=2.2.2,<3.0.0)
Requires-Dist: scipy (>=1.15,<2.0)
Project-URL: Repository, https://github.com/davidaustinm/MTH205-W20
Description-Content-Type: text/markdown

This package is meant for students taking linear algebra classes at [Grand Valley State University](https://gvsu.edu/math) though others are certainly welcome to use it.  Students become comfortable using Sage to do some linear algebraic computations but eventually start working in Colab notebooks.  To help facilitate working in a Colab notebook, this package provides access to `numpy` commands using a Sage-like syntax.  There are a few other features for visualizing the results of some computations.

Within a Colab notebook or other pure Python environment, begin with

```
!pip install gv_linalg
from gv_linalg import *
```
Then Sage-like commands, such as,

```
A = matrix([[1,2],[2,1]])
A.eigenvalues()
```
work as expected.
