improved calc with an easy plot function

modified:   .local/bin/dropdowncalc
This commit is contained in:
Alexander Bocken 2020-08-17 15:15:35 +02:00
parent 11c023aade
commit e997d37346

View File

@ -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()
"