##// END OF EJS Templates
created new sci profile, a modernized version of scipy
created new sci profile, a modernized version of scipy

File last commit:

r658:eb2411ad
r658:eb2411ad
Show More
ipy_profile_sci.py
17 lines | 361 B | text/x-python | PythonLexer
import ipy_defaults
# import ...
# Load Numpy an SciPy by themselves so that 'help' works on them
import IPython.ipapi
import ipy_defaults
def main():
ip = IPython.ipapi.get()
ip.ex("import scipy")
ip.ex("import numpy")
ip.ex("from scipy import *")
ip.ex("from numpy import *")
if __name__ == "__main__":
main()