File:Integerdeltasine,a=0.6,s=0plot.png

From timescalewiki
Jump to: navigation, search
Original file(874 × 898 pixels, file size: 24 KB, MIME type: image/png)
#!/usr/bin/python
import numpy as np
import matplotlib.pyplot as plt
from mpmath import *
from pylab import rcParams
rcParams['figure.figsize'] = 10, 10

x=np.arange(-15,20,1);
def integerexp(a,t,s):
        return (1+a)**(t-s)

def returnzero(t):
        return 0

def integersine(t): # a=0.6,s=0
        return (integerexp(0.6j,t,0)-integerexp(-0.6j,t,0))/(2j)
f=np.vectorize(lambda x : integersine(x).real)
y=f(x)
def g(x):
        return 0
h=np.vectorize(g)
y2=h(x)

fig, ax = plt.subplots()

plt.xlabel(r'$t$')
plt.ylabel(r'$\sin_{0.6}(t,0;\mathbb{Z})$')
plt.title(r'Time scale delta sine function')

plt.scatter(x,y,color='Black',s=40)
plt.plot(x,y2,'--',linewidth=2,color='Black')

plt.xlim([-15.3,20.3])
#plt.ylim([-0.5,10])

plt.savefig('integersine,a=0.6,s=0plot.png',bbox_inches='tight',pad_inches=0.15)

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current06:59, 1 June 2016Thumbnail for version as of 06:59, 1 June 2016874 × 898 (24 KB)Tom (talk | contribs)Category:Plot Category:TimeScaleDeltaExponential Category:TimeScale:Integers Category:SpecialFunction <pre>#!/usr/bin/python import numpy as np import matplotlib.pyplot as plt from mpmath import * from pylab import rcParams rcParams['fi...
  • You cannot overwrite this file.

The following 3 pages link to this file:

Metadata