¡@

Home 

python Programming Glossary: sine

Fitting a 3D array of data to a 1D function with numpy or scipy

http://stackoverflow.com/questions/15094619/fitting-a-3d-array-of-data-to-a-1d-function-with-numpy-or-scipy

or scipy 4I am currently trying to fit a lot of data to a sine function. In the case where I only have one set of data 1D array..

Python finite difference functions?

http://stackoverflow.com/questions/18991408/python-finite-difference-functions

from scipy import ndimage x np.linspace 0 2 np.pi 100 sine np.sin x im sine sine ... None d1 ndimage.gaussian_filter im.. ndimage x np.linspace 0 2 np.pi 100 sine np.sin x im sine sine ... None d1 ndimage.gaussian_filter im sigma 5 order 1.. ndimage x np.linspace 0 2 np.pi 100 sine np.sin x im sine sine ... None d1 ndimage.gaussian_filter im sigma 5 order 1 mode..

Choosing between different switch-case replacements in Python - dictionary or if-elif-else?

http://stackoverflow.com/questions/594442/choosing-between-different-switch-case-replacements-in-python-dictionary-or-if

problem 1 def _setCurrentCurve self curve if curve sine self.currentCurve SineCurve startAngle 0 endAngle 14 lineColor..

Spline representation with scipy.interpolate: Poor interpolation for low-amplitude, rapidly oscillating functions

http://stackoverflow.com/questions/7906126/spline-representation-with-scipy-interpolate-poor-interpolation-for-low-amplitu

following code to create a spline representation of the sine function over the interval 0 6 pi so the function oscillates.. #interval 0 6 pi in 10'000 steps y A 1.e0 # Amplitude of sine function for i in range len k y.append A sin k i tck interpolate.UnivariateSpline.. #interval 0 6 pi in 10'000 steps A 1.e 4 # Amplitude of sine function y A np.sin x fig axes plt.subplots nrows 2 for ax s..