summaryrefslogtreecommitdiff
path: root/Electronic_Devices_/Chapter18.ipynb
diff options
context:
space:
mode:
authorroot2014-07-07 16:45:58 +0530
committerroot2014-07-07 16:45:58 +0530
commit1b0d935754549d175d2bad3d5eb5dc541bd7a0d4 (patch)
treefe73fe578ee4ce75d83ca61cdc533c4110d03a2a /Electronic_Devices_/Chapter18.ipynb
parentfffcc90da91b66ee607066d410b57f34024bd1de (diff)
downloadPython-Textbook-Companions-1b0d935754549d175d2bad3d5eb5dc541bd7a0d4.tar.gz
Python-Textbook-Companions-1b0d935754549d175d2bad3d5eb5dc541bd7a0d4.tar.bz2
Python-Textbook-Companions-1b0d935754549d175d2bad3d5eb5dc541bd7a0d4.zip
removing unwanted files
Diffstat (limited to 'Electronic_Devices_/Chapter18.ipynb')
-rw-r--r--Electronic_Devices_/Chapter18.ipynb56
1 files changed, 0 insertions, 56 deletions
diff --git a/Electronic_Devices_/Chapter18.ipynb b/Electronic_Devices_/Chapter18.ipynb
deleted file mode 100644
index e195b9f9..00000000
--- a/Electronic_Devices_/Chapter18.ipynb
+++ /dev/null
@@ -1,56 +0,0 @@
-{
- "metadata": {
- "name": "Chapter_18"
- },
- "nbformat": 2,
- "worksheets": [
- {
- "cells": [
- {
- "cell_type": "markdown",
- "source": [
- "<h1>Chapter 18: Programmable Analog Arrays<h1>"
- ]
- },
- {
- "cell_type": "markdown",
- "source": [
- "<h3>Example 18.1, Page Number: 588<h3>"
- ]
- },
- {
- "cell_type": "code",
- "collapsed": false,
- "input": [
- "",
- "import math",
- "#Variable declaration",
- "C=1000*10**-12; #Switche capacitor value in farads",
- "R=1000; #resistance in ohms",
- "",
- "#calculation",
- "T=R*C; #Time period",
- "f=1/T; #Frequency at which switch should operate",
- "f=math.ceil(f)",
- "#Result",
- "print('Frequency at which each switch should operate(in hertz) is \\n %d' %f)",
- "print('Duty cycle should be 50%')"
- ],
- "language": "python",
- "outputs": [
- {
- "output_type": "stream",
- "stream": "stdout",
- "text": [
- "Frequency at which each switch should operate(in hertz) is ",
- " 1000000",
- "Duty cycle should be 50%"
- ]
- }
- ],
- "prompt_number": 1
- }
- ]
- }
- ]
-} \ No newline at end of file