diff --git a/.local/bin/dropdowncalc b/.local/bin/dropdowncalc index e68a38a..c946922 100755 --- a/.local/bin/dropdowncalc +++ b/.local/bin/dropdowncalc @@ -1,2 +1,13 @@ #!/bin/sh -ifinstalled python && python -iq -c "print('Welcome to the Calculator'); from numpy import *; import sys; sys.ps1='❯'" +ifinstalled python && python -iq -c "print('Welcome to the Calculator') +from numpy import * +import sys +import matplotlib.pyplot as plt +sys.ps1='❯' + +def plot(a, b, f): + x = linspace(a, b, 1000) + y = eval(f) + plt.plot(x, y) + plt.show() +"