diff options
author | Srikant Patnaik | 2015-02-27 17:10:12 +0530 |
---|---|---|
committer | Srikant Patnaik | 2015-02-27 17:10:12 +0530 |
commit | 121f6027864eec574ad581705eb277e19120720c (patch) | |
tree | de95760936c857f2e4a3dce1ffb25c17daa512fa /Satellite_Communications | |
parent | b14c13fcc6bb6d01c468805d612acb353ec168ac (diff) | |
download | Python-Textbook-Companions-121f6027864eec574ad581705eb277e19120720c.tar.gz Python-Textbook-Companions-121f6027864eec574ad581705eb277e19120720c.tar.bz2 Python-Textbook-Companions-121f6027864eec574ad581705eb277e19120720c.zip |
Changed '%pylab inline' to '%matplotlib inline' to fix warning messages across 138 files
Diffstat (limited to 'Satellite_Communications')
-rwxr-xr-x | Satellite_Communications/Chapter_10.ipynb | 2 | ||||
-rwxr-xr-x | Satellite_Communications/Chapter_6.ipynb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Satellite_Communications/Chapter_10.ipynb b/Satellite_Communications/Chapter_10.ipynb index 3886255a..6cfea3ed 100755 --- a/Satellite_Communications/Chapter_10.ipynb +++ b/Satellite_Communications/Chapter_10.ipynb @@ -122,7 +122,7 @@ "\n", "import math\n", "from pylab import*\n", - "%pylab inline\n", + "%matplotlib inline\n", "x=linspace(8,10,11) #Eb/N0 ratio represented by x\n", "x1=x**0.5\n", "for i in range(0,11):\n", diff --git a/Satellite_Communications/Chapter_6.ipynb b/Satellite_Communications/Chapter_6.ipynb index cafbce7e..644cc1ae 100755 --- a/Satellite_Communications/Chapter_6.ipynb +++ b/Satellite_Communications/Chapter_6.ipynb @@ -30,7 +30,7 @@ "input": [ "import math\n", "from pylab import *\n", - "%pylab inline\n", + "%matplotlib inline\n", "#Variable Decalration\n", "a=3\n", "b=2\n", @@ -126,7 +126,7 @@ "input": [ "import math\n", "from pylab import *\n", - "%pylab inline\n", + "%matplotlib inline\n", "#Varable Declaration\n", "\n", "N=5 #Number of elements of dipole\n", @@ -201,7 +201,7 @@ "input": [ "import math\n", "from pylab import *\n", - "%pylab inline\n", + "%matplotlib inline\n", "#Varable Declaration\n", "\n", "N=5 #Number of elements of dipole\n", |