#!/usr/bin/python # -*- coding: UTF-8 -*- import numpy from scipy import special from cmath import * from pylab import * def sphjn(n,x): return sqrt(pi/2./x)*special.jv(n+0.5,x) def sphyn(n,x): return… la suite →
Olivier Reynetoreynet wrote 1 year ago: #!/usr/bin/python # -*- coding: UTF-8 -*- import numpy from scipy import special from cmath import * … more →