Skip to content

Habu-Kagumba/mini_matlab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mini Matlab REPL Clone

Installing and running

You can install through pip straight from my github repo. Preferably do this in a virtual environment.

pip install -e git+https://github.com/Habu-Kagumba/mini_matlab#egg=mini_matlab

or alternatively you can clone this repo and install from the root directory.

git clone https://github.com/Habu-Kagumba/mini_matlab

# Recommended - do this in an environment.

python setup.py develop

Running is as easy as;

mini_matlab

Features

  • Array and Matrix creation through variables.
  a = [1, 2, 3]

  b = [1 2 3; 4 5 10]

  c = [10 30 50; 100 20 80]

  d = [1 3 5; 2 5 1; 3 5 2]
  • Basic Matrix operations.

    • Transpose

      b'
    • Inverse

      inv(d)
    • Multiplication

      c * d
    • Addition / Subtraction

      b + c
      
  • Ability to save workspace on exit and automatically loaded during the next session.

  Do you want to save your workspace? (yes|no) yes
  Successfully saved your workspace. Goodbye.
  • Autocomplete features with mouse capability.

Requirements

  • Tested with Python 2.7

About

Mini Matlab REPL clone

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages