summaryrefslogtreecommitdiff
path: root/Modern_Electronics_Communication/chapter10.ipynb
blob: 878fe5de3a9851c735feb402168d57495215377c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
 "metadata": {
  "name": ""
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 10 Wireless digital communication"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 10.2 Page no 467"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#given\n",
      "n=3                 #shift registers\n",
      "n1=7\n",
      "\n",
      "#calculation\n",
      "x=(2**n)-1\n",
      "y=(2**7)-1\n",
      "\n",
      "#result\n",
      "print\"(a) n =\",n,\"PN sequence length = \",x\n",
      "print\"(b) n =\",n1,\"PN sequence length = \",y"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(a) n = 3 PN sequence length =  7\n",
        "(b) n = 7 PN sequence length =  127\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 10.3 Page no 477"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#given\n",
      "x=56.0                                #modulation bit rate\n",
      "y=560                                 #chip rate\n",
      "a=256.0                               #modulation bit rate\n",
      "b=1792                                #chip rate\n",
      "\n",
      "#calculation\n",
      "z=y/x\n",
      "c=b/a\n",
      "\n",
      "#result\n",
      "#part(a)\n",
      "print\"Spreading of a DSSS signal = \",z\n",
      "print\"Spreading of a DSSS signal = \",c"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Spreading of a DSSS signal =  10.0\n",
        "Spreading of a DSSS signal =  7.0\n"
       ]
      }
     ],
     "prompt_number": 4
    }
   ],
   "metadata": {}
  }
 ]
}