Original file (SVG file, nominally 360 × 288 pixels, file size: 89 KB)
This file is from Wikimedia Commons and may be used by other projects.
The description on its file description page there is shown below.
Summary
Python/Matplotlib Source Code
#!/usr/bin/env python
"""This generates the graph depicting Re sinc(z)."""
# Author: Ika. 2015-08-13
from matplotlib.pyplot import *
import matplotlib.pyplot as plt
import numpy as np
low = - 7.0
high = 7.0
tic = 0.1
X = np . arange ( low , high , tic )
Z = np . outer ( X , X )
for i in range ( len ( X )):
for j in range ( len ( X )):
x = low + tic * j
y = low + tic * i
if np . abs ( x ) < tic and np . abs ( y ) < tic :
Z [ i ][ j ] = 0.0
else :
Z [ i ][ j ] = (( np . exp ( 1 j * ( x + 1 j * y )) - np . exp ( - 1 j * ( x + 1 j * y ))) / ( 2 j * ( x + 1 j * y ))) . imag
plt . figure ( figsize = ( 4 , 3.2 ))
plt . axes ([ 0.18 , 0.08 , 0.76 , 0.9 ])
plt . imshow ( Z , origin = 'lower' , \
cmap = plt . cm . gist_rainbow , \
extent = ( low , high , low , high ))
plt . colorbar ( shrink = 0.84 )
for a in plt . gca () . get_xticklabels ():
a . set_size ( 10 )
for a in plt . gca () . get_yticklabels ():
a . set_size ( 10 )
plt . savefig ( "sinc_re.svg" )
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original. https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 true true English Add a one-line explanation of what this file represents
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time Thumbnail Dimensions User Comment
current 09:00, 13 August 2015 360 × 288 (89 KB) wikimediacommons>IkamusumeFan User created page with UploadWizard
File usage
The following page uses this file: