Lab: Plotting with matplotlib. Day 1. Copyright Oliver Serang, 2018 University of Montana Department of Computer Science

Size: px
Start display at page:

Download "Lab: Plotting with matplotlib. Day 1. Copyright Oliver Serang, 2018 University of Montana Department of Computer Science"

Transcription

1 1 Lab: Plotting with matplotlib Copyright Oliver Serang, 2018 University of Montana Department of Computer Science Day 1 With python, we can plot by installing matplotlib. Here is a piece of code that plots an exponential series 2 x from x = 0 to x = 9 (inclusive): # display the plot: This script will wait until the plotting window is closed. We can also change the y-axis scale to a log-scale:

2 2 # change the y-axis to log-scale pylab.yscale( log ) # display the plot: You can also use the savefig function to save figures. These figures can be.png,.pdf, or other types of files (matplotlib will automatically determine this when you give it a.png or.pdf file name!): # change the y-axis to log-scale pylab.yscale( log ) # save the plot to file my_file.png: pylab.savefig( my_file.png ) We can also use L A TEX notation to include formatted formulas in plots. The following code plots x 2 5 from x = 0 to x = 99 (inclusive) at the integers:

3 3 import math x=range(100) y=[ val**math.sqrt(2) / math.sqrt(5) for val in x ] pylab.plot(x, y, label=r $\frac{x^\sqrt{2}}{\sqrt{5}}$ ) 1. Using your memoized zombie function, z(t), from previous week s lab, create two lists: day = [0, 1, 2,...30] and zombies = [z(0), z(1), z(2),...z(30)]. Plot t against z(t), label the axes, and save the figure to a.png file using pylab.savefig function. (Include your.png file in your printed lab assignment.) 2. Replot and resave the answer to your previous question by using a log-scale on the y-axis. (Include your.png file in your printed lab assignment.) 3. Is the zombie population growing faster than the exponential function 2 t? Add another series (2 t ) to your plot and annotate these on the plot legend. (Include your.png file in your printed lab assignment.) Day 2 You can change the axis annotations or use qualitative variables using the pylab.xticks. This is shown in the following bar plot script: day_number = range(7) temperature = [ 7, 10, -3, 5, 12, 7, 3 ] # make a bar plot: pylab.bar(day_number, temperature)

4 4 # use qualitative variables: pylab.xticks(day_number, [ Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday ]) # show the data Overlapping series can be difficult to see, because one will obscure the other. For this reason, we can enable transparency with alpha compositing : day_number = range(7) temperature = [ 7, 10, -3, 5, 12, 7, 3 ] temperature_2 = [ 2, 12, 4, 3, 12, 6, -2 ] # make two bar plots: pylab.bar(day_number, temperature, label= First series, alpha=0.7) pylab.bar(day_number, temperature_2, label= Another series, alpha=0.7) # use qualitative variables: pylab.xticks(day_number, [ Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday ]) # draw the legend # show the data We can also control the position of the legend: pylab.legend(loc= upper right ) will draw the legend in the upper right corner of the plot. This can be useful when the automatic position of the legend would obscure much of the data plotted. 1. Using your Monte Carlo assignment that estimated π, make two lists: the first list will contain the number of iterations so far and the second list will contain the Monte Carlo estimate thus far. Plot these two lists using the number of iterations from 1 to 500 (inclusive). On the same

5 figure, plot the floating point estimate of π (using numpy.pi) using a list containing many copies of the same value: [π, π, π,... π]. Use the L A TEX notation \pi to label the y-axis with Estimate of π. (Include your.png file in your printed lab assignment.) 2. Retrieve the snowfall data (by month) for Missoula and for Bozeman. Create bar plots with labeled axes (use qualitative labels for the names of the months). (Include your.png file in your printed lab assignment.) 3. Add another bar series for Bozeman s snowfall to the same plot. Use transparency with alpha compositing so that the overlap can be distinguished. (Include your.png file in your printed lab assignment.) 5

EPT 2018 MONTE CARLO TOURNAMENT SCHEDULE

EPT 2018 MONTE CARLO TOURNAMENT SCHEDULE EPT 2018 MONTE CARLO TOURNAMENT SCHEDULE April 24 - Tuesday 18:00 #1 NL Hold'em - 8 Handed - Single Re-Entry - Day 1 10,300 50,000 2018-04-24 19:30 20:00 #2 NL Hold'em - 1,100 Cash Qualifier - Unlimited

More information

Collecting and Organizing Data. The Scientific Method (part 3) Rules for making data tables: Collecting and Organizing Data

Collecting and Organizing Data. The Scientific Method (part 3) Rules for making data tables: Collecting and Organizing Data Collecting and Organizing Data The Scientific Method (part 3) As you work on your experiment, you are making observations that will become your experimental data. Data can be collected in a variety of

More information

January Photo concepts Agenda Instructor JudyWilson. Sun Mon Tuesday Wed Thursday Fri Sat 1 New Year's Day

January Photo concepts Agenda Instructor JudyWilson. Sun Mon Tuesday Wed Thursday Fri Sat 1 New Year's Day January 2013 1 New Year's Day 2 3 4 5 6 7 10 11 12 13 14 15 Introduction/Syllabus Requirements USB/BOOK Access Camera Suggestions Review What you should know M L King Day 22 Library Access Required by

More information

If the pink gorilla eats watermelon every night, how much watermelons does he eat? One Stop Teacher Shop. Resources. Make Homework Interesting!

If the pink gorilla eats watermelon every night, how much watermelons does he eat? One Stop Teacher Shop. Resources. Make Homework Interesting! Resources Make Homework Interesting! Name: Date: Four in a Row: Reading Homework FICTION Each week you will select four boxes in a row for your reading homework. The row can be horizontal, vertical, or

More information

Trig Identities Packet

Trig Identities Packet Advanced Math Name Trig Identities Packet = = = = = = = = cos 2 θ + sin 2 θ = sin 2 θ = cos 2 θ cos 2 θ = sin 2 θ + tan 2 θ = sec 2 θ tan 2 θ = sec 2 θ tan 2 θ = sec 2 θ + cot 2 θ = csc 2 θ cot 2 θ = csc

More information

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes.

PASS Sample Size Software. These options specify the characteristics of the lines, labels, and tick marks along the X and Y axes. Chapter 940 Introduction This section describes the options that are available for the appearance of a scatter plot. A set of all these options can be stored as a template file which can be retrieved later.

More information

Lecture 8. Outline. 1. Modular Arithmetic. Clock Math!!! 2. Inverses for Modular Arithmetic: Greatest Common Divisor. 3. Euclid s GCD Algorithm

Lecture 8. Outline. 1. Modular Arithmetic. Clock Math!!! 2. Inverses for Modular Arithmetic: Greatest Common Divisor. 3. Euclid s GCD Algorithm Lecture 8. Outline. 1. Modular Arithmetic. Clock Math!!! 2. Inverses for Modular Arithmetic: Greatest Common Divisor. 3. Euclid s GCD Algorithm Clock Math If it is 1:00 now. What time is it in 5 hours?

More information

Lecture 30. Monday, March 28 CS 205 Programming for the Sciences - Lecture 30 1

Lecture 30. Monday, March 28 CS 205 Programming for the Sciences - Lecture 30 1 Lecture 30 Log into Windows/ACENET. Download and extract GraphFunctionV2.zip, a new version of the Graph Function project. Double-click into the project folders to the solution file. Doubleclick on the

More information

PA3 Part 2: BLM List. Workbook 3 - Patterns & Algebra, Part 2 1 BLACKLINE MASTERS

PA3 Part 2: BLM List. Workbook 3 - Patterns & Algebra, Part 2 1 BLACKLINE MASTERS PA Part : BLM List Calendars Colouring Exercise Hanji Puzzles Hundreds Charts 8 Mini Sudoku 9 Sudoku The Real Thing Sudoku Warm Up Venn Diagram BLACKLINE MASTERS Workbook - Patterns & Algebra, Part Calendars

More information

The fraction 2 is read two thirds. Model each fraction shown in problems 1 and 2. Then draw a picture of each fraction.

The fraction 2 is read two thirds. Model each fraction shown in problems 1 and 2. Then draw a picture of each fraction. Modeling Fractions Lesson 1 1 The denominator of a fraction shows how many equal parts make the whole. The numerator of a fraction shows how many parts we are describing. We can use models to illustrate

More information

Welcome to Math! Put last night s homework on your desk and begin your warm-up (the other worksheet that you chose to save for today)

Welcome to Math! Put last night s homework on your desk and begin your warm-up (the other worksheet that you chose to save for today) Welcome to Math! Put last night s homework on your desk and begin your warm-up (the other worksheet that you chose to save for today) Unit Map - Geometry Thursday - Parallel Lines Cut by a Transversal

More information

HIGH SCHOOL MATHEMATICS CONTEST Sponsored by THE MATHEMATICS DEPARTMENT of WESTERN CAROLINA UNIVERSITY. LEVEL I TEST March 23, 2017

HIGH SCHOOL MATHEMATICS CONTEST Sponsored by THE MATHEMATICS DEPARTMENT of WESTERN CAROLINA UNIVERSITY. LEVEL I TEST March 23, 2017 HIGH SCHOOL MATHEMATICS CONTEST Sponsored by THE MATHEMATICS DEPARTMENT of WESTERN CAROLINA UNIVERSITY LEVEL I TEST March 23, 2017 Prepared by: John Wagaman, Chairperson Nathan Borchelt DIRECTIONS: Do

More information

36 th NEW BRUNSWICK MATHEMATICS COMPETITION

36 th NEW BRUNSWICK MATHEMATICS COMPETITION UNIVERSITY OF NEW BRUNSWICK UNIVERSITÉ DE MONCTON 36 th NEW BRUNSWICK MATHEMATICS COMPETITION Thursday, May 3 rd, 2018 GRADE 8 INSTRUCTIONS TO THE STUDENT: 1. Do not start the examination until you are

More information

Week 2: Plotting in Matlab APPM 2460

Week 2: Plotting in Matlab APPM 2460 Week 2: Plotting in Matlab APPM 2460 1 Introduction Matlab is great at crunching numbers, and one of the fundamental ways that we understand the output of this number-crunching is through visualization,

More information

Vintage Christmas Redwork #12612 / 37 Designs

Vintage Christmas Redwork #12612 / 37 Designs 12612-01 Sunday 1,776 St. 12612-02 Monday 1,782 St. 12612-03 Tuesday 1,783 St. 12612-04 Wednesday 1,899 St. 12612-05 Thursday 1,883 St. 12612-06 Friday 1,786 St. 12612-07 Saturday 1,848 St. 12612-08 Poinsettia

More information

Print & Go. math & literacy practice. St. Patrick s Day Themed. FREE from The Curriculum Corner.

Print & Go. math & literacy practice. St. Patrick s Day Themed. FREE from The Curriculum Corner. Print & Go St. Patrick s Day Themed math & literacy practice FREE from The Curriculum Corner My St. Patrick s Day Practice Book Name: Count to 100 2 4 7 1 1 14 16 19 22 25 28 36 40 43 45 47 51 54 58 62

More information

Pick 3 Lottery 7 DAY NUMBERS-18. Numbers Good for the Week of Jan 17 Jan 23 (2016) AANewYork

Pick 3 Lottery 7 DAY NUMBERS-18. Numbers Good for the Week of Jan 17 Jan 23 (2016) AANewYork 1 Pick 3 Lottery 7 DAY NUMBERS-18 Numbers Good for the Week of Jan 17 Jan 23 (2016) AANewYork There were 47 Summary Report hits in Book 18. I thought it would be very interesting to see where these hits

More information

1) 1) 2) 2) 3) 3) 4) 4) 5) 5) 6) 6) 7) 7) 8) 8) 9) 9) 10) 10) 11) 11) 12) 12)

1) 1) 2) 2) 3) 3) 4) 4) 5) 5) 6) 6) 7) 7) 8) 8) 9) 9) 10) 10) 11) 11) 12) 12) Review Test 1 Math 1332 Name SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Write a word description of the set. 1) 1) {26, 28, 30, 32,..., 100} List

More information

ACHS Math Team Lecture: Introduction to Set Theory Peter S. Simon

ACHS Math Team Lecture: Introduction to Set Theory Peter S. Simon ACHS Math Team Lecture: Introduction to Set Theory Peter S. Simon Introduction to Set Theory A set is a collection of objects, called elements or members of the set. We will usually denote a set by a capital

More information

2.1. Pictograms. 2 Displaying data. GCSE LINKS AF: 12.1 Pictograms; BF: Unit Pictograms; S: 2.8 Pictograms. Key points

2.1. Pictograms. 2 Displaying data. GCSE LINKS AF: 12.1 Pictograms; BF: Unit Pictograms; S: 2.8 Pictograms. Key points 2 Displaying data 2.1 Pictograms Needs more practice Almost there Chapter I m proficient! 2 Displaying data Draw pictograms AF: 12.1 Pictograms; BF: Unit 1 2.1 Pictograms; S: 2.8 Pictograms A pictogram

More information

CHM 152 Lab 1: Plotting with Excel updated: May 2011

CHM 152 Lab 1: Plotting with Excel updated: May 2011 CHM 152 Lab 1: Plotting with Excel updated: May 2011 Introduction In this course, many of our labs will involve plotting data. While many students are nerds already quite proficient at using Excel to plot

More information

Draw an enlargement of this rectangle with scale factor 2 Use point A as the centre of enlargement.

Draw an enlargement of this rectangle with scale factor 2 Use point A as the centre of enlargement. Enlargement 2. Look at the rectangle drawn on a square grid. Draw an enlargement of this rectangle with scale factor 2 Use point A as the centre of enlargement. A KS3/05/Ma/Tier 6 8/P2 4 Heron of Alexandria

More information

Cleveland Poker Open. Main Event will include MSPT LIVE Reporting

Cleveland Poker Open. Main Event will include MSPT LIVE Reporting JACK Cleveland Casino - Cleveland, OH January 19-28, 2018 Players must have a players club card and valid ID to register and play. Cleveland Poker Open Main Event will include MSPT LIVE Reporting Amount

More information

Progress Report: Lab 5 System analysis 2 & Design Analysis Tool ENGR Shreyas Doejode Asad Idris Menan Kedai Kaixin Luo Due Date: February

Progress Report: Lab 5 System analysis 2 & Design Analysis Tool ENGR Shreyas Doejode Asad Idris Menan Kedai Kaixin Luo Due Date: February Progress Report: Lab 5 System analysis 2 & Design Analysis Tool ENGR 1188-0010 Shreyas Doejode Asad Idris Menan Kedai Kaixin Luo Due Date: February 8th, 2017 Backwards Looking Summary In this lab 4, the

More information

GREATER CLARK COUNTY SCHOOLS PACING GUIDE. Algebra I MATHEMATICS G R E A T E R C L A R K C O U N T Y S C H O O L S

GREATER CLARK COUNTY SCHOOLS PACING GUIDE. Algebra I MATHEMATICS G R E A T E R C L A R K C O U N T Y S C H O O L S GREATER CLARK COUNTY SCHOOLS PACING GUIDE Algebra I MATHEMATICS 2014-2015 G R E A T E R C L A R K C O U N T Y S C H O O L S ANNUAL PACING GUIDE Quarter/Learning Check Days (Approx) Q1/LC1 11 Concept/Skill

More information

Paper Reference (complete below) Paper Reference(s) 5381F/5A 5542F/8A. Edexcel GCSE

Paper Reference (complete below) Paper Reference(s) 5381F/5A 5542F/8A. Edexcel GCSE Centre No. Candidate No. Surname Signature Paper Reference(s) 538F/5A 5542F/8A Edexcel GCSE Mathematics (Modular) 238 Paper 5 Section A (Calculator) Unit Test Data Handling Mathematics B (Modular) 2544

More information

Lesson Plans Week #19, to Monday 7.3 Special Right Triangles 7.7 Positive Rational Roots

Lesson Plans Week #19, to Monday 7.3 Special Right Triangles 7.7 Positive Rational Roots Lesson Plans Week #19, 1-25-16 to 1-29-16 Monday 7.3 Special Right Triangles 7.7 Positive Rational Roots Tuesday 7.4 Trigonometry 7.8 Negative Rational Roots Wednesday 7.4 More on Trigonometry Ch. 7 pretest

More information

Introduction to Simulink Assignment Companion Document

Introduction to Simulink Assignment Companion Document Introduction to Simulink Assignment Companion Document Implementing a DSB-SC AM Modulator in Simulink The purpose of this exercise is to explore SIMULINK by implementing a DSB-SC AM modulator. DSB-SC AM

More information

Math 8 Homework TRIMESTER 2 November March 2019

Math 8 Homework TRIMESTER 2 November March 2019 Math 8 Homework TRIMESTER 2 November 2018 - March 2019 MATH XL can be found at www.mrpk.org, press Student button, press Pearson Easy Bridge. Assignments will be found under the selection. Students should

More information

JMG. Review Module 1 Lessons 1-20 for Mid-Module. Prepare for Endof-Unit Assessment. Assessment. Module 1. End-of-Unit Assessment.

JMG. Review Module 1 Lessons 1-20 for Mid-Module. Prepare for Endof-Unit Assessment. Assessment. Module 1. End-of-Unit Assessment. Lesson Plans Lesson Plan WEEK 161 December 5- December 9 Subject to change 2016-2017 Mrs. Whitman 1 st 2 nd Period 3 rd Period 4 th Period 5 th Period 6 th Period H S Mathematics Period Prep Geometry Math

More information

Excel Lab 2: Plots of Data Sets

Excel Lab 2: Plots of Data Sets Excel Lab 2: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Engineering Fundamentals and Problem Solving, 6e

Engineering Fundamentals and Problem Solving, 6e Engineering Fundamentals and Problem Solving, 6e Chapter 5 Representation of Technical Information Chapter Objectives 1. Recognize the importance of collecting, recording, plotting, and interpreting technical

More information

Math 247: Continuous Random Variables: The Uniform Distribution (Section 6.1) and The Normal Distribution (Section 6.2)

Math 247: Continuous Random Variables: The Uniform Distribution (Section 6.1) and The Normal Distribution (Section 6.2) Math 247: Continuous Random Variables: The Uniform Distribution (Section 6.1) and The Normal Distribution (Section 6.2) The Uniform Distribution Example: If you are asked to pick a number from 1 to 10

More information

MAT01A1. Appendix D: Trigonometry

MAT01A1. Appendix D: Trigonometry MAT01A1 Appendix D: Trigonometry Dr Craig 14 February 2017 Introduction Who: Dr Craig What: Lecturer & course coordinator for MAT01A1 Where: C-Ring 508 acraig@uj.ac.za Web: http://andrewcraigmaths.wordpress.com

More information

Wednesday. Friday. Thursday. Tuesday. Name: Monday January 18 th No School. Tuesday January 19 th 11.2 (2 Pages)

Wednesday. Friday. Thursday. Tuesday. Name: Monday January 18 th No School. Tuesday January 19 th 11.2 (2 Pages) Homework Hello Students and Parents. We will continue learning about Angles this week. Students will relate degrees to fractional parts of a circle, they will use a protractor to measure and draw angles,

More information

MATHEMATICAL FUNCTIONS AND GRAPHS

MATHEMATICAL FUNCTIONS AND GRAPHS 1 MATHEMATICAL FUNCTIONS AND GRAPHS Objectives Learn how to enter formulae and create and edit graphs. Familiarize yourself with three classes of functions: linear, exponential, and power. Explore effects

More information

Paper Reference. Edexcel GCSE Mathematics (Modular) 2381 Paper 5 Section B (Non-Calculator) Foundation Tier. Unit 1 Test Data Handling

Paper Reference. Edexcel GCSE Mathematics (Modular) 2381 Paper 5 Section B (Non-Calculator) Foundation Tier. Unit 1 Test Data Handling Centre No. Candidate No. Paper Reference 5381F 5B Surname Signature Paper Reference(s) 5381F/5B Edexcel GCSE Mathematics (Modular) 2381 Paper 5 Section B (Non-Calculator) Foundation Tier Unit 1 Test Data

More information

Single Table Satellites & Mega Satellites Schedule Day Date Buy-In Time Mega Satellites 8:20pm $100 w/2 Opt. $20 AO

Single Table Satellites & Mega Satellites Schedule Day Date Buy-In Time Mega Satellites 8:20pm $100 w/2 Opt. $20 AO & Mega Satellites Schedule Day Date Buy-In Time Mega Satellites 8:20pm $100 w/2 Opt. $20 AO Friday 7/13 $65 11am-6pm On Demand! 8:20pm $100 w/2 Opt. $20 AO Saturday 7/14 $65 1pm-6pm On Demand! 5pm $100

More information

Perry High School. Geometry: Week 3

Perry High School. Geometry: Week 3 Geometry: Week 3 Monday: Labor Day! Tuesday: 1.5 Segments and Angle Bisectors Wednesday: 1.5 - Work Thursday: 1.6 Angle Pair Relationships Friday: 1.6-Work Next Week 1.7, Review, Exam 1 on FRIDAY 1 Tuesday:

More information

Print & Go. math & literacy practice. Themed. FREE from The Curriculum Corner.

Print & Go. math & literacy practice. Themed. FREE from The Curriculum Corner. Print & Go Valentine Themed math & literacy practice FREE from The Curriculum Corner My Valentine Practice Book Name: Count to 100 1 5 9 12 14 18 20 23 26 27 33 35 38 39 41 42 49 50 54 56 60 62 65 67 71

More information

Unit 2: Exponents. 8 th Grade Math 8A - Mrs. Trinquero 8B - Dr. Taylor 8C - Mrs. Benefield

Unit 2: Exponents. 8 th Grade Math 8A - Mrs. Trinquero 8B - Dr. Taylor 8C - Mrs. Benefield Unit 2: Exponents 8 th Grade Math 8A - Mrs. Trinquero 8B - Dr. Taylor 8C - Mrs. Benefield 1 8 th Grade Math Unit 2: Exponents Standards and Elements Targeted in the Unit: NS 1 Know that numbers that are

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *9105218512* CAMBRIDGE INTERNATIONAL MATHEMATICS 0607/32 Paper 3 (Core) May/June 2017 Candidates

More information

Section 7.2 Logarithmic Functions

Section 7.2 Logarithmic Functions Math 150 c Lynch 1 of 6 Section 7.2 Logarithmic Functions Definition. Let a be any positive number not equal to 1. The logarithm of x to the base a is y if and only if a y = x. The number y is denoted

More information

S56 (5.1) Logs and Exponentials.notebook October 14, 2016

S56 (5.1) Logs and Exponentials.notebook October 14, 2016 1. Daily Practice 21.9.2016 Exponential Functions Today we will be learning about exponential functions. A function of the form y = a x is called an exponential function with the base 'a' where a 0. y

More information

Signal and Information Processing

Signal and Information Processing Signal and Information Processing Alejandro Ribeiro Dept. of Electrical and Systems Engineering University of Pennsylvania aribeiro@seas.upenn.edu http://www.seas.upenn.edu/users/~aribeiro/ January 11,

More information

GCSE Mathematics Non-Calculator Foundation Tier Free Practice Set 5 1 hour 30 minutes

GCSE Mathematics Non-Calculator Foundation Tier Free Practice Set 5 1 hour 30 minutes First Name Last Name Date Total Marks / 100 marks MathsMadeEasy 3 GCSE Mathematics Non-Calculator Foundation Tier Free Practice Set 5 1 hour 30 minutes Answers at: http://www.mathsmadeeasy.co.uk/gcsemathspapers-free.htm

More information

the Ultimate planner for the the creative business owner

the Ultimate planner for the the creative business owner the Ultimate planner for the the creative business owner cannot live in chaos Welcome to the Business Planner. This planner is designed for the creative entrepreneur using social media to grow their business.

More information

SMS045 - DSP Systems in Practice. Lab 1 - Filter Design and Evaluation in MATLAB Due date: Thursday Nov 13, 2003

SMS045 - DSP Systems in Practice. Lab 1 - Filter Design and Evaluation in MATLAB Due date: Thursday Nov 13, 2003 SMS045 - DSP Systems in Practice Lab 1 - Filter Design and Evaluation in MATLAB Due date: Thursday Nov 13, 2003 Lab Purpose This lab will introduce MATLAB as a tool for designing and evaluating digital

More information

ECEn 487 Digital Signal Processing Laboratory. Lab 3 FFT-based Spectrum Analyzer

ECEn 487 Digital Signal Processing Laboratory. Lab 3 FFT-based Spectrum Analyzer ECEn 487 Digital Signal Processing Laboratory Lab 3 FFT-based Spectrum Analyzer Due Dates This is a three week lab. All TA check off must be completed by Friday, March 14, at 3 PM or the lab will be marked

More information

Donna Burk Allyn Snider

Donna Burk Allyn Snider Donna Burk Allyn Snider ISBN 9781886131880 B1NCSB-B August & September Coin Patterns 1 Ten & More How Many Bugs? 3 October Pennies 5 & More 4 Pennies 5 & More pieces 5 Bugs Doubles & Neighbors 7 Bugs Doubles

More information

LOCATIONS: Getting your UN ID for the 71 st Session of the General Assembly S D

LOCATIONS: Getting your UN ID for the 71 st Session of the General Assembly S D LOCATIONS: Getting your UN ID for the 71 st Session of the General Assembly DELEGATES: YOU CAN GET YOUR ID CARD AT: United Nations Pass and ID Office at 320 East 45 th Street (between 1 st and 2 nd Avenues)

More information

Laboratory 5: RC Circuits and Filtering

Laboratory 5: RC Circuits and Filtering 5.1 Introduction Laboratory 5: ircuits and Filtering For this lab, you will be comparing the experimental behavior of a filter with analytical behavior modeled in MATLAB using Bode plots. During the lab

More information

October. Sunday Monday Tuesday Wednesday Thursday Friday Saturday. 3 Pick an idea

October. Sunday Monday Tuesday Wednesday Thursday Friday Saturday. 3 Pick an idea October Sunday Monday Tuesday Wednesday Thursday Friday Saturday 7 Make a list of topics to research 14 Make a list of character names 21 Make a list of things that you love or draws you into a story 28

More information

Lab 3 FFT based Spectrum Analyzer

Lab 3 FFT based Spectrum Analyzer ECEn 487 Digital Signal Processing Laboratory Lab 3 FFT based Spectrum Analyzer Due Dates This is a three week lab. All TA check off must be completed prior to the beginning of class on the lab book submission

More information

Grade 2 supplement. Set A6 Number & Operations: Money. Includes. Skills & Concepts

Grade 2 supplement. Set A6 Number & Operations: Money. Includes. Skills & Concepts Grade 2 supplement Set A6 Number & Operations: Money Includes Activity 1: Dollar & Cents A6.1 Activity 2: Three Spins to Win A6.9 Independent Worksheet 1: Mr. Mole s Money A6.15 Skills & Concepts H determine

More information

Print & Go. math & literacy practice. Winter Themed. FREE from The Curriculum Corner.

Print & Go. math & literacy practice. Winter Themed. FREE from The Curriculum Corner. Print & Go Winter Themed math & literacy practice FREE from The Curriculum Corner My Winter Practice Book Name: Count to 100 2 4 8 10 11 13 17 19 25 26 28 31 34 37 39 43 45 48 50 52 53 56 60 61 64 69 73

More information

UK SENIOR MATHEMATICAL CHALLENGE

UK SENIOR MATHEMATICAL CHALLENGE UK SENIOR MATHEMATICAL CHALLENGE Thursday 5 November 2015 Organised by the United Kingdom Mathematics Trust and supported by Institute and Faculty of Actuaries RULES AND GUIDELINES (to be read before starting)

More information

Name. Scientific Numbers Significant Figures Graphing

Name. Scientific Numbers Significant Figures Graphing Name Honors Chemistry Summer Assignment 2017 Welcome to Honors Chemistry. Included are several sections that assess your math and science skills. Each section contains an informational portion that explains

More information

Adding & Subtracting Decimals. Multiplying Decimals. Dividing Decimals

Adding & Subtracting Decimals. Multiplying Decimals. Dividing Decimals 1. Write the problem vertically, lining up the decimal points. 2. Add additional zeroes at the end, if necessary, to make the numbers have the same number of decimal places. 3. Add/subtract as if the numbers

More information

Learning Log Title: CHAPTER 2: ARITHMETIC STRATEGIES AND AREA. Date: Lesson: Chapter 2: Arithmetic Strategies and Area

Learning Log Title: CHAPTER 2: ARITHMETIC STRATEGIES AND AREA. Date: Lesson: Chapter 2: Arithmetic Strategies and Area Chapter 2: Arithmetic Strategies and Area CHAPTER 2: ARITHMETIC STRATEGIES AND AREA Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 2: Arithmetic Strategies and Area Date: Lesson:

More information

Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools are not always the best

Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools are not always the best Elementary Plots Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools are not always the best More importantly, it is easy to lie

More information

Class VIII Chapter 15 Introduction to Graphs Maths

Class VIII Chapter 15 Introduction to Graphs Maths Exercise 15.1 Question 1: The following graph shows the temperature of a patient in a hospital, recorded every hour. (a) What was the patient s temperature at 1 p.m.? (b) When was the patient s temperature

More information

+ < = # going into grade 2 MY summer calendar} JUNE Reading: Reading: Reading: Reading: Reading: Reading: Reading: Math: Math: Math: Math: Math:

+ < = # going into grade 2 MY summer calendar} JUNE Reading: Reading: Reading: Reading: Reading: Reading: Reading: Math: Math: Math: Math: Math: + < = # MY summer calendar JUNE 2016 SUNDAY MONDAY TUESDAY WEDNESDAY THRUSDAY FRIDAY SATURDAY 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 + < = # MY summer calendar

More information

Solving Equations and Graphing

Solving Equations and Graphing Solving Equations and Graphing Question 1: How do you solve a linear equation? Answer 1: 1. Remove any parentheses or other grouping symbols (if necessary). 2. If the equation contains a fraction, multiply

More information

Core Learning Standards for Mathematics Grade 6

Core Learning Standards for Mathematics Grade 6 Core Learning Standards for Mathematics Grade 6 Write and evaluate numerical expressions involving whole-number exponents. Write, read, and evaluate expressions; identify parts of an expression using mathematical

More information

Education Resources. This section is designed to provide examples which develop routine skills necessary for completion of this section.

Education Resources. This section is designed to provide examples which develop routine skills necessary for completion of this section. Education Resources Logs and Exponentials Higher Mathematics Supplementary Resources Section A This section is designed to provide examples which develop routine skills necessary for completion of this

More information

COCI 2008/2009 Contest #4, 17 th January 2009 TASK MJEHURIC DATUM ROT SLIKAR TREZOR PERIODNI

COCI 2008/2009 Contest #4, 17 th January 2009 TASK MJEHURIC DATUM ROT SLIKAR TREZOR PERIODNI TASK MJEHURIC DATUM ROT SLIKAR TREZOR PERIODNI standard standard time limit 1 second 1 second 1 second 1 second 3 seconds 5 seconds memory limit 32 MB 32 MB 32 MB 32 MB 32 MB 32 MB points 40 40 70 100

More information

G r a d e. 2 M a t h e M a t i c s. Blackline Masters

G r a d e. 2 M a t h e M a t i c s. Blackline Masters G r a d e 2 M a t h e M a t i c s Blackline Masters BLM K 4.1 Assessment Checklist Student s Name Comments BLM 2.N.1.1 Eyes and Fingers BLM 2.N.1.2 Ten-Strips BLM 2.N.1.2 Ten-Strips (continued) BLM 2.N.1.3

More information

Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert

Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert Drawing Bode Plots (The Last Bode Plot You Will Ever Make) Charles Nippert This set of notes describes how to prepare a Bode plot using Mathcad. Follow these instructions to draw Bode plot for any transfer

More information

SPRING. FALL There will be no classes Wyndham Championship Week (August 13-19) CAMPS. Visit us online at: Summer. Winter

SPRING. FALL There will be no classes Wyndham Championship Week (August 13-19) CAMPS. Visit us online at: Summer. Winter PLAYer Session 1: Mondays (April 9 - May 14) or Wednesdays (April 11 - May 16) PLAYer Session 2: Mondays (May 21 June 25 Makeup) or Wednesdays (May 23 June 27) Par Session 1: Mondays (April 9 - May 14)

More information

AWM 11 UNIT 1 WORKING WITH GRAPHS

AWM 11 UNIT 1 WORKING WITH GRAPHS AWM 11 UNIT 1 WORKING WITH GRAPHS Assignment Title Work to complete Complete 1 Introduction to Statistics Read the introduction no written assignment 2 Bar Graphs Bar Graphs 3 Double Bar Graphs Double

More information

Redwork 2 #12441 / 44 Designs

Redwork 2 #12441 / 44 Designs 12441-01 Sunbonnet Picking Flowers 3.44 X 4.15 in. 87.38 X 105.41 mm 3,420 St. R 12441-02 Sunbonnet Doing Wash 4.06 X 4.52 in. 103.12 X 114.81 mm 3,079 St. R 12441-03 Sunbonnet Doing Embroidery 3.35 X

More information

Applications. 14 Prime Time. 1. Ben claims that 12 is a factor of 24. How can you check to determine whether he is correct?

Applications. 14 Prime Time. 1. Ben claims that 12 is a factor of 24. How can you check to determine whether he is correct? Applications 1. Ben claims that 12 is a factor of 24. How can you check to determine whether he is correct? 2. What factor is paired with to give 24? 3. What factor is paired with 5 to give 45? 4. What

More information

Wednesday. Friday. Monday. Thursday. Tuesday. Name: Monday March 14 th Performance Coach pages

Wednesday. Friday. Monday. Thursday. Tuesday. Name: Monday March 14 th Performance Coach pages Homework Students will continue reviewing for the FSA. Please check and make sure your children are completing their homework and showing their work. There will be a Quiz on Thursday reviewing Performance

More information

Perry High School. Algebra 2: Week 9. Note: Don t forget to read the sections before or after we cover them. Also, don t forget the website.

Perry High School. Algebra 2: Week 9. Note: Don t forget to read the sections before or after we cover them. Also, don t forget the website. Algebra 2: Week 9 Monday: 2.8 Absolute Value Functions Tuesday: 2.8 Work Day Wednesday: Review Exam 2, Day 1 Thursday: Professional Day, NO SCHOOL Friday: Fall Break? NO SCHOOL Note: Don t forget to read

More information

Lily Pad Lab. Background

Lily Pad Lab. Background Lily Pad Lab Background In Thailand, water plants such as lily pads are a daily problem citizens must cope with. Since cities are built around waterways, people often commute using boats and ferries instead

More information

MATH 135 Algebra, Solutions to Assignment 7

MATH 135 Algebra, Solutions to Assignment 7 MATH 135 Algebra, Solutions to Assignment 7 1: (a Find the smallest non-negative integer x such that x 41 (mod 9. Solution: The smallest such x is the remainder when 41 is divided by 9. We have 41 = 9

More information

Lab P-4: AM and FM Sinusoidal Signals. We have spent a lot of time learning about the properties of sinusoidal waveforms of the form: ) X

Lab P-4: AM and FM Sinusoidal Signals. We have spent a lot of time learning about the properties of sinusoidal waveforms of the form: ) X DSP First, 2e Signal Processing First Lab P-4: AM and FM Sinusoidal Signals Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises

More information

Chapters 1-3, 5, Inductive and Deductive Reasoning, Fundamental Counting Principle

Chapters 1-3, 5, Inductive and Deductive Reasoning, Fundamental Counting Principle Math 137 Exam 1 Review Solutions Chapters 1-3, 5, Inductive and Deductive Reasoning, Fundamental Counting Principle NAMES: Solutions 1. (3) A costume contest was held at Maria s Halloween party. Out of

More information

MATLAB 2-D Plotting. Matlab has many useful plotting options available! We ll review some of them today.

MATLAB 2-D Plotting. Matlab has many useful plotting options available! We ll review some of them today. Class15 MATLAB 2-D Plotting Matlab has many useful plotting options available! We ll review some of them today. help graph2d will display a list of relevant plotting functions. Plot Command Plot command

More information

Practice Test 3 (longer than the actual test will be) 1. Solve the following inequalities. Give solutions in interval notation. (Expect 1 or 2.

Practice Test 3 (longer than the actual test will be) 1. Solve the following inequalities. Give solutions in interval notation. (Expect 1 or 2. MAT 115 Spring 2015 Practice Test 3 (longer than the actual test will be) Part I: No Calculators. Show work. 1. Solve the following inequalities. Give solutions in interval notation. (Expect 1 or 2.) a.

More information

MAT01A1. Appendix D: Trigonometry

MAT01A1. Appendix D: Trigonometry MAT01A1 Appendix D: Trigonometry Dr Craig 12 February 2019 Introduction Who: Dr Craig What: Lecturer & course coordinator for MAT01A1 Where: C-Ring 508 acraig@uj.ac.za Web: http://andrewcraigmaths.wordpress.com

More information

CSE 115. Introduction to Computer Science I

CSE 115. Introduction to Computer Science I CSE 115 Introduction to Computer Science I FINAL EXAM Tuesday, December 11, 2018 7:15 PM - 10:15 PM SOUTH CAMPUS (Factor in travel time!!) Room assignments will be published on last day of classes CONFLICT?

More information

Spring 2018 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans. Homework #1 Sinusoids, Transforms and Transfer Functions

Spring 2018 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Evans. Homework #1 Sinusoids, Transforms and Transfer Functions Spring 2018 EE 445S Real-Time Digital Signal Processing Laboratory Prof. Homework #1 Sinusoids, Transforms and Transfer Functions Assigned on Friday, February 2, 2018 Due on Friday, February 9, 2018, by

More information

High School Mathematics Contest

High School Mathematics Contest High School Mathematics Contest Elon University Mathematics Department Saturday, March 23, 2013 1. Find the reflection (or mirror image) of the point ( 3,0) about the line y = 3x 1. (a) (3, 0). (b) (3,

More information

Lecture 7. ANNOUNCEMENTS MIDTERM #1 willbe held in class on Thursday, October 11 Review session will be held on Friday, October 5

Lecture 7. ANNOUNCEMENTS MIDTERM #1 willbe held in class on Thursday, October 11 Review session will be held on Friday, October 5 Lecture 7 ANNOUNCEMENTS MIDTERM #1 willbe held in class on Thursday, October 11 Review session will be held on Friday, October 5 MIDTERM #2 will be held in class on Tuesday, November 13 OUTLINE BJT Amplifiers

More information

Core Learning Standards for Mathematics Grade 1 SAMPLE. Mondays p. 58 #3 4 p. 67 #2 5 p. 76 #2 5

Core Learning Standards for Mathematics Grade 1 SAMPLE. Mondays p. 58 #3 4 p. 67 #2 5 p. 76 #2 5 Core Learning Standards for Mathematics Grade 1 Use addition and subtraction within 20 to solve word problems. Solve word problems that call for addition of three whole numbers whose sum is less than or

More information

Mock AMC 10 Author: AlcumusGuy

Mock AMC 10 Author: AlcumusGuy 014-015 Mock AMC 10 Author: AlcumusGuy Proofreaders/Test Solvers: Benq sicilianfan ziyongcui INSTRUCTIONS 1. DO NOT PROCEED TO THE NEXT PAGE UNTIL YOU HAVE READ THE IN- STRUCTIONS AND STARTED YOUR TIMER..

More information

Integrators, differentiators, and simple filters

Integrators, differentiators, and simple filters BEE 233 Laboratory-4 Integrators, differentiators, and simple filters 1. Objectives Analyze and measure characteristics of circuits built with opamps. Design and test circuits with opamps. Plot gain vs.

More information

Main Event will include LIVE Reporting and LIVE Final Table Broadcast with Hole Cards

Main Event will include LIVE Reporting and LIVE Final Table Broadcast with Hole Cards Event Schedule FireKeepers Casino - Battle Creek, MI May -0, 08 Players must have a players club card and valid ID to register and play. Main Event will include LIVE Reporting and LIVE Final Table Broadcast

More information

Math Labs. Activity 1: Rectangles and Rectangular Prisms Using Coordinates. Procedure

Math Labs. Activity 1: Rectangles and Rectangular Prisms Using Coordinates. Procedure Math Labs Activity 1: Rectangles and Rectangular Prisms Using Coordinates Problem Statement Use the Cartesian coordinate system to draw rectangle ABCD. Use an x-y-z coordinate system to draw a rectangular

More information

The Sixth Annual West Windsor-Plainsboro Mathematics Tournament

The Sixth Annual West Windsor-Plainsboro Mathematics Tournament The Sixth Annual West Windsor-Plainsboro Mathematics Tournament Saturday October 27th, 2018 Grade 7 Test RULES The test consists of 25 multiple choice problems and 5 short answer problems to be done in

More information

FireKeepers Casino - Battle Creek, MI October 7-15, 2017

FireKeepers Casino - Battle Creek, MI October 7-15, 2017 FireKeepers Casino - Battle Creek, MI October 7-5, 07 The +0 is an optional dealer appreciation add-on ---,000 chips in Satellite, 5,000 chips in Main Event Day Event Location Rounds Time Friday, August

More information

Name: Section: Tuesday January 17 th 10.6 (1 page) Wednesday January 18 th 10.7 (1 page) Thursday January 19 th Chapter 10 Study Guide (2 pages)

Name: Section: Tuesday January 17 th 10.6 (1 page) Wednesday January 18 th 10.7 (1 page) Thursday January 19 th Chapter 10 Study Guide (2 pages) Homework Hello Students and Parents. We will continue learning about Two-Dimensional Shapes. Students will identify and draw lines of symmetry in two-dimensional figures. Students will describe patterns

More information

1/20/2017. Warmup 1/ Check Homework. Methods of studying. Return Quizzes

1/20/2017. Warmup 1/ Check Homework. Methods of studying. Return Quizzes Created by Mr. Lischwe Warmup 1/ 2 10 1 1. Copy the diagram. How many rectangles of any size are there? A square counts as a rectangle. Check Homewk Return Quizzes Retake deadline is on the board! I chose

More information

Name Class Date. Introducing Probability Distributions

Name Class Date. Introducing Probability Distributions Name Class Date Binomial Distributions Extension: Distributions Essential question: What is a probability distribution and how is it displayed? 8-6 CC.9 2.S.MD.5(+) ENGAGE Introducing Distributions Video

More information

Math A Regents Exam 0800 Page a, P.I. A.A.12 The product of 2 3 x and 6 5 x is [A] 10x 8

Math A Regents Exam 0800 Page a, P.I. A.A.12 The product of 2 3 x and 6 5 x is [A] 10x 8 Math A Regents Exam 0800 Page 1 1. 080001a, P.I. A.A.1 The product of x and 6 5 x is [A] x 8 [B] x 15 [C] 1x 8 [D] 1x 15 5. 080005a Which table does not show an example of direct variation? [A] [B]. 08000a,

More information

GMAT-Arithmetic-4. Counting Methods and Probability

GMAT-Arithmetic-4. Counting Methods and Probability GMAT-Arithmetic-4 Counting Methods and Probability Counting Methods: 1).A new flag with six vertical stripes is to be designed using some or all of the colours yellow, green, blue and red. The number of

More information

Investigations into Matter and Energy

Investigations into Matter and Energy Mirrors 7/24/14 Investigations into Matter and Energy SOL(s): PS.9 c Investigate and Understand Images Formed by Lenses and Mirrors The student will investigate and understand images formed by lenses and

More information

Solutions to the problems from Written assignment 2 Math 222 Winter 2015

Solutions to the problems from Written assignment 2 Math 222 Winter 2015 Solutions to the problems from Written assignment 2 Math 222 Winter 2015 1. Determine if the following limits exist, and if a limit exists, find its value. x2 y (a) The limit of f(x, y) = x 4 as (x, y)

More information