Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168756
Image: ubuntu2004
from numpy import linspace from scipy.special import sici import pylab r = 15 x = linspace(-r, r) y = sici(x)[0] pylab.plot(x,y) pylab.grid(True) pylab.savefig('sin-int.png')