78 lines
1.5 KiB
Python
Raw Normal View History

def notify(msg):
2015-01-15 03:10:11 -07:00
_.notify(msg)
def ask(msg):
return _.ask(msg)
def factorial(n):
return _.factorial(n)
2015-01-15 03:10:11 -07:00
def diff(fun,var):
return _.diff(fun,var)
def integrate(fun,var):
return _.integrate(fun,var)
def rad(num):
return _.rad(num)
def deg(num):
return _.deg(num)
def subs(fun,var):
return _.subs(fun,var)
def plot():
_.plot()
def plot(fun):
_.plot(fun)
def plotname(fun):
_.plotname(fun)
def plotname():
return _.plotname()
def xlim(min,max):
_.xlim(min,max)
def plotclr():
_.plotclr()
def drawdot(x, y):
_.drawdot(x, y)
def simplify(expr):
return _.simplify(expr)
def vpa(expr):
return _.vpa(expr)
def readfile(path):
return _.readfile(path)
def savefile(data,path):
2015-03-14 21:26:54 -06:00
_.savefile(data,path)
def mtimes(a,b):
return _.mtimes(a,b)
def mpower(a,b):
return _.mpower(a,b)
def add(*a):
return _.add(a)
def subtract(*a):
return _.subtract(a)
def times(*a):
return _.times(a)
def divide(*a):
return _.divide(a)
def mod(*a):
2015-03-14 21:50:08 -06:00
return _.mod(a)
def rand():
return _.rand()
def rand(min,max):
return _.rand(min,max)
def randb():
return _.randb()
2015-03-28 19:28:32 -06:00
def sleep(x):
_.sleep(x)
def pause(x):
_.pause(x)
2015-04-01 22:07:01 -06:00
def perms(*a):
return _.perms(a)
def md5sum(a):
2015-04-11 14:32:05 -06:00
return _.md5sum(a)
def save(a,b):
return _.save(a,b)
def load(a):
return _.load(a)
def powermod(a,b,m):
return _.powermod(a,b,m)
def gcd(a,b):
return _.gcd(a,b)
2015-04-16 11:52:45 -06:00
def solve(a,b='x',c=0):
return _.solve(a,b,c)
def printa(a):
return _.printa(a)