aerospaceresearch / visma

VISual MAth - an equation solver and visualizer
GNU General Public License v3.0
100 stars 80 forks source link
math solver visma

visma - VISual MAth

A math equation solver and visualizer

visma

Build Status Codacy Badge Coveralls Coverage

An equation solver and visualizer, which aims to help in grasping how mathematical equations are transformed and solved. By this the threshold for obtaining deeper mathematical understanding can be reduced.

Installation

PyPI PyPI - Python Version

NOTE: VISualMAth is supported for python3 and above only. The recommended installation method is through pip/pip3.

$ pip3 install visualmath

This sets up the environment to run on your computer.

$ visma
>>> gui
$ python3
>>> from visma.main import init
>>> init()
Welcome! This is Visual Maths Interactive Shell...
type 'help' for a User Manual and Ctrl + D to Exit prompt

>>> simplify(2 + x + 11)
INPUT: 2.0 + x + 11.0
OPERATION: simplify
OUTPUT: 13.0 + x

2.0 + x + 11.0

(Adding 11.0 and 2.0)
13.0 + x

>>> 
[5]+  Stopped                 python3

Download:

GitHub release GitHub repo size in bytes

If visma is to be installed locally or for development:

$ pip3 install -r requirements.txt
$ python3 main.py

NOTE: If using pip instead of pip3 for installing, make sure to check if the pip exists in python3 library by checking the pip version.

$ pip --version

Docs

Github Wiki GitHub code size in bytes

For code documentation and learning how to use visma check out the wiki.

Demo

Below are some demos showing visma and its capabilities:

To see all features of visma, check this out.

Contribute:

GitHub pull requests GitHub issues Zulip

PRs are welcomed. For contributing to visma refer CONTRIBUTING.md. If there are any issues or ideas they can be addressed through the issues or in chat room.

License:

License: GPL v3

visma is distributed under the GNU GPL-3 or later.