LING/C SC 581: Advanced Computa9onal Linguis9cs. Lecture Notes Jan 15 th

Size: px
Start display at page:

Download "LING/C SC 581: Advanced Computa9onal Linguis9cs. Lecture Notes Jan 15 th"

Transcription

1 LING/C SC 581: Advanced Computa9onal Linguis9cs Lecture Notes Jan 15 th

2 Course Webpage for lecture slides and Panopto recordings: hap://dingo.sbs.arizona.edu/~sandiway/ling581-15/ Mee6ng informa6on

3 Course Objec9ves Follow- on course to LING/C SC/PSYC 438/538 Computa(onal Linguis(cs: con9nue with selected material from the 538 textbook (J&M): 25 chapters, a lot of material not covered in 438/538 And gain more extensive experience with new stuff not in textbook dealing with natural language sowware packages Installa9on, input data formaxng opera9on project exercises useful real- world computa9onal experience abili9es gained will be of value to employers

4 Computa9onal Facili9es Use your own laptop/desktop can also make use of the computers in this lab (Shantz 338) PlaMorms but you don t have installa9on rights on these computers Plus the alarm goes off awer hours and campus police will arrive Windows is maybe possible but you really should run some variant of Unix (for your task #1 for this week) Linux (separate bootable par99on or via virtualiza9on sowware) de facto standard for advanced/research sowware haps:// (free!) Cygwin on Windows hap:// Linux- like environment for Windows making it possible to port sowware running on POSIX systems (such as Linux, BSD, and Unix systems) to Windows. OSX Not quite Linux, some por9ng issues, especially with C programs, can use Virtual Box (Linux under OSX)

5 Grading Comple9on of all homework tasks will result in a sa9sfactory grade (A) Tasks should be completed before the next class. me your work (sandiway@ .arizona.edu). also be prepared to come up and present your work (if called upon).

6 Today's Topics Homework Task 1: Install tregex

7 Homework Task 1: Install Tregex hap://nlp.stanford.edu/sowware/tregex.shtml Computer language: java (538: Perl regex on strings) 581: regex for trees

8 Homework Task 1: Install Tregex We ll use the program tregex from Stanford University to explore the Penn Treebank current version:

9 Penn Treebank Availability Source: Linguis9c Data Consor9um (LDC) U. of Arizona is a (fee- paying) member of this consor9um Resources are made available to the community through the main library URL hap://sabio.library.arizona.edu/search/x

10 Penn Treebank (V3) Call Record Have it on a usb drive here that I will pass around TREEBANK_3.zip (65.2MB)

11 Raw data: Penn Treebank (V3)

12 tregex Tregex is a Tgrep2- style u9lity for matching paaerns in trees. wri5en in Java run-tregex-gui.command shell script -mx flag, the 300m default memory size may need to be increased depending on the platform

13 tregex Select the PTB directory TREEBANK_3/parsed/mrg/wsj/ Browse Deselect any unwanted files

14 Part 2 Textbook: sec9on 3.11

15 general string comparison edit opera9ons are inser9on, dele9on and subs9tu9on not just limited to distance defined by a single opera9on away we can ask how different is string a from b by the minimum edit distance 15

16 applica6ons could be used for mul9- typo correc9on used in Machine Transla9on Evalua9on (MTEval) example Source: 生産工程改善について Transla6ons: (Standard) For improvement of the produc9on process (MT- A) About a produc9on process beaerment (MT- B) About the produc9on process improvement method compute edit distance between MT- A and Standard and MT- B and Standard in terms of word inser9on/subs9tu9on etc. 16

17 cost models Levenshtein inser9on, dele9on and subs9tu9on all have unit cost Levenshtein (alternate) inser9on, dele9on have unit cost subs9tu9on is twice as expensive subs8tu8on = one insert followed by one delete Typewriter inser9on, dele9on and subs9tu9on all have unit cost modified by key proximity 17

18 Dynamic Programming divide- and- conquer to solve a problem we divide it into sub- problems sub- problems may be repeated don t want to re- solve a sub- problem the 2nd 9me around idea: put solu9ons to sub- problems in a table and just look up the solu9on 2nd 9me around, thereby saving 9me memoiza(on we ll use a spreadsheet

19 Consider a simple case: xy yx Minimum # of opera9ons: insert and delete cost = 2 Minimum # of opera9ons: swap cost =?

20 Generally

21 Programming Practice: could be easily implemented in Perl

22 Generally

23 Computa9on Or in MicrosoW Excel, file: eds.xls (on course webpage) $ in a cell reference means don t change when copied from cell to cell e.g. in C$1 1 stays the same in $A3 A stays the same

24 Task: transform string s 1..s i into string t 1..t j each s n and t n are leaers string s is of length i, t is of length j Example: s = leader, t = adapter i = 6, j = 7 Let s say you re allowed just three opera9ons: (1) delete a leaer, (2) insert a leaer, or (3) subs9tute a leaer for another leaer What is one possible way to generate t from s?

25 Example: s = leader, t = adapter What is one possible way to generate t from s? leader!! adapter! adapter! adapte! lead! l! leader! leade! lea! le! ada! adap! adapt! Simplest method cost: 13 operations cost is 2 deletes and 3 inserts, total 5 opera9ons Ques9on: is this the minimum possible?

26 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r!

27 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r! cell (2,3) cost of transforming le into ada

28 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r! cell (2,3) cost of transforming le into ada cell (6,7) cost of transforming leader into adapter

29 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r! cell (3,0) cost of transforming lea into (empty)

30 0 1 l! 2 e! 3 a! 4 d! cell (0,4) cost of transforming (empty) into adap 5 e! 6 r!

31 0 1 l! 2 e! 3 a! 4 d! 5 e! k 6 r! cell (5,6) cost of transforming leade into adapte

32 0 1 l! 2 e! 3 a! 4 d! 5 e! k 6 r! cell (5,6) cost of transforming leade into adapte

33 0 1 l! 2 e! 3 a! 4 d! cell (5,6) cost of transforming leade into adapte 5 e! k 6 r! k

34 0 1 l! 2 e! k 3 a! 4 d! 5 e! 6 r! cell (2,3) cost of transforming le into ada

35 0 1 l! 2 e! k 3 a! 4 d! 5 e! 6 r! cell (2,3) cost of transforming le into ada cell (2,4) cost of transforming le into adap

36 0 1 l! 2 e! k k+1 3 a! 4 d! 5 e! 6 r! cell (2,3) cost of transforming le into ada cell (2,4) cost of transforming le into adap l! e! a! d! a! p!

37 0 1 l! k 2 e! 3 a! 4 d! 5 e! 6 r! cell (1,4) cost of transforming l into adap

38 0 1 l! k 2 e! k+1 3 a! 4 d! 5 e! 6 r! cell (1,4) cost of transforming l into adap a! d! a! p! l! e!

39 0 1 l! k 2 e! 3 a! 4 d! 5 e! cell (1,3) cost of transforming l into ada 6 r!

40 0 1 l! k 2 e! k+2 3 a! 4 d! 5 e! 6 r! cell (1,3) cost of transforming l into ada assuming the cost of swapping e for p is 2 l! e! a! d! a! p!

41 0 1 l! k 1,3 k 1,4 2 e! k 2,3? 3 a! 4 d! 5 e! 6 r! cell (2,4) minimum of the three costs to get here in one step

42 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r! cell (3,0) cost of transforming lea into (empty)

43 0 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r!

44 0 0 1 l! 1 2 e! 3 a! 4 d! 5 e! 6 r!

45 0 0 1 l! 1 2 e! 2 3 a! cost of le à! =! cost of l à, plus the cost of delet 4 d! 5 e! 6 r!

46 0 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! 5 6 r! 6

47 0 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r!

48 l! 2 e! 3 a! 4 d! 5 e! 6 r!

49 0 1 l! 2 e! 3 a! 4 d! 5 e! 6 r!

50 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! 5 6 r! 6

51 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! 5 6 r! 6

52 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! 5 6 r! 6

53 0 1 l! e! 2 3 a! 3 4 d! 4 5 e! 5 6 r! 6

54 0 1 l! 1 2 e! 2 3 a! 3 4 d! e! r! 6

55 0 1 l! 1 2 e! 2 3 a! 3 4 d! e! r! 6

56 0 1 l! 1 2 e! 2 3 a! 3 4 d! e! r! 6

57 0 1 l! 1 2 e! a! d! 4 5 e! 5 6 r! 6

58 0 1 l! 1 2 e! a! d! 4 5 e! 5 6 r! 6

59 0 1 l! 1 2 e! a! d! 4 5 e! 5 6 r! 6

60 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! r! 6 7

61 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! r! 6 7

62 0 1 l! 1 2 e! 2 3 a! 3 4 d! 4 5 e! r! 6 7 6

63

1001ICT Introduction To Programming Lecture Notes

1001ICT Introduction To Programming Lecture Notes 1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 4 Lego Mindstorms 4.1 Robotics? Any programming course will set

More information

Flexible Software for Computer-Based Problem Solving Labs

Flexible Software for Computer-Based Problem Solving Labs Flexible Software for Computer-Based Problem Solving Labs Brita L. Nellermoe 1 Jennifer L. Docktor 2 1 Department of Curriculum and Instruction 2 Department of Physics Physics Education Research Group

More information

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT v. 10.0 GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts

More information

The MQ Console and REST API

The MQ Console and REST API The MQ Console and REST API Matt Leming lemingma@uk.ibm.com Agenda Existing capabilities What s new? The mqweb server The MQ REST API The MQ Console 1 Existing capabilities Administering software MQ Queue

More information

Mac Software Manual for FITstep Pro Version 2

Mac Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports.

We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports. 1 We release Mascot Server 2.6 at the end of last year. There have been a number of changes and improvements in the search engine and reports. I ll also be covering some enhancements and changes in Mascot

More information

BVIS Beach Volleyball Information System

BVIS Beach Volleyball Information System BVIS Beach Volleyball Information System Developments in computer science over the past few years, together with technological innovation, has in turn stimulated the development of tailored software solutions

More information

SEAWAT Viscosity and Pressure Effects. Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT.

SEAWAT Viscosity and Pressure Effects. Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT. v. 10.4 GMS 10.4 Tutorial Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts the fluid density in SEAWAT. Prerequisite

More information

DESIGN AND ANALYSIS OF ALGORITHMS (DAA 2017)

DESIGN AND ANALYSIS OF ALGORITHMS (DAA 2017) DESIGN AND ANALYSIS OF ALGORITHMS (DAA 2017) Veli Mäkinen 12/05/2017 1 COURSE STRUCTURE 7 weeks: video lecture -> demo lecture -> study group -> exercise Video lecture: Overview, main concepts, algorithm

More information

Syllabus for CS 111 Operating System Principles Summer 2015

Syllabus for CS 111 Operating System Principles Summer 2015 Syllabus for CS 111 Operating System Principles Summer 2015 The summer session is eight weeks long. There is no finals week. There will be 16 meetings of the class, plus eight recitation sections The midterm

More information

Please note. Right now, the ongoing version of emax (3.9C) is not already completely compatible with the newest firmware version of Shimano!

Please note. Right now, the ongoing version of emax (3.9C) is not already completely compatible with the newest firmware version of Shimano! June 14th, 2018 Please note Right now, the ongoing version of emax (3.9C) is not already completely compatible with the newest firmware version 4.4.5 of Shimano! With firmware version 4.4.5, 4.4.4, 4.4.2

More information

CS 341 Computer Architecture and Organization. Lecturer: Bob Wilson Cell Phone: or

CS 341 Computer Architecture and Organization. Lecturer: Bob Wilson Cell Phone: or CS 341 Computer Architecture and Organization Lecturer: Bob Wilson Cell Phone: 508-577-9895 Email: robert.wilson@umb.edu or bobw@cs.umb.edu 1 Welcome to CS341 This course teaches computer architecture

More information

Diver Training Options

Diver Training Options MAIN INTERNET ON-SITE TAILORED PACKAGES INTER-COMPANY Diver Training Options DBI offers a menu of tailored courses Designed for users as well as IT Professionals to learn how to master the functionality

More information

Diver-Office. Getting Started Guide. 2007, Schlumberger Water Services

Diver-Office. Getting Started Guide. 2007, Schlumberger Water Services Diver-Office Getting Started Guide 2007, Schlumberger Water Services Copyright Information 2007 Schlumberger Water Services. All rights reserved. No portion of the contents of this publication may be reproduced

More information

Algorithms and Data Structures

Algorithms and Data Structures Algorithms and Data Structures CMPSC 465 LECTURES 22-23 Binary Search Trees Adam Smith S. Raskhodnikova and A. Smith. Based on slides by C. Leiserson and E. Demaine. 1 Heaps: Review Heap-leap-jeep-creep(A):

More information

FOCUS ON PHYSICAL SCIENCE: CALIFORNIA EDITION (PRENTICE HALL SCIENCE EXPLORER) BY DAVID V. FRANK

FOCUS ON PHYSICAL SCIENCE: CALIFORNIA EDITION (PRENTICE HALL SCIENCE EXPLORER) BY DAVID V. FRANK FOCUS ON PHYSICAL SCIENCE: CALIFORNIA EDITION (PRENTICE HALL SCIENCE EXPLORER) BY DAVID V. FRANK DOWNLOAD EBOOK : FOCUS ON PHYSICAL SCIENCE: CALIFORNIA EDITION Click link bellow and free register to download

More information

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14.

Workshop 1: Bubbly Flow in a Rectangular Bubble Column. Multiphase Flow Modeling In ANSYS CFX Release ANSYS, Inc. WS1-1 Release 14. Workshop 1: Bubbly Flow in a Rectangular Bubble Column 14. 5 Release Multiphase Flow Modeling In ANSYS CFX 2013 ANSYS, Inc. WS1-1 Release 14.5 Introduction This workshop models the dispersion of air bubbles

More information

USER MANUAL April 2016

USER MANUAL April 2016 USER MANUAL April 2016 Introduction TIEBREAK is a program for real time volleyball game data entry and statistical analysis. Extremely easy to use, TIEBREAK makes it possible to reliably and quickly enter

More information

The NXT Generation. A complete learning solution

The NXT Generation. A complete learning solution The NXT Generation A complete learning solution 2008 The NXT Generation LEGO MINDSTORMS Education is the latest in educational robotics, enabling students to discover ICT, science, D&T and maths concepts

More information

HPICAL Operation & Data Logging Procedures. Click spacebar to advance through slides 1

HPICAL Operation & Data Logging Procedures. Click spacebar to advance through slides 1 HPICAL-15000 Operation & Data Logging Procedures Click spacebar to advance through slides 1 WARNING Always wear proper safety equipment when using high pressure equipment. Do not exceed 125 psi air pressure.

More information

ADVANCED. CATIA V5 Workbook. Knowledgeware and Workbenches. Release 16. Knowledgeware. Workbenches. Richard Cozzens. Southern Utah University

ADVANCED. CATIA V5 Workbook. Knowledgeware and Workbenches. Release 16. Knowledgeware. Workbenches. Richard Cozzens. Southern Utah University ADVANCED CATIA V5 Workbook Knowledgeware and Workbenches Release 16 Knowledgeware Tutorial Exercises Workbenches Kinematics Stress Analysis Sheetmetal Design Prismatic Machining Richard Cozzens Southern

More information

Dive Planet. Manual. Rev Basic User Interface. 2 How to organize your dives. 3 Statistics. 4 Location Service and Map View.

Dive Planet. Manual. Rev Basic User Interface. 2 How to organize your dives. 3 Statistics. 4 Location Service and Map View. Dive Planet Manual Rev 1.2 1 Basic User Interface 2 How to organize your dives 3 Statistics 4 Location Service and Map View 5 Settings 6 Languages 7 Buddies and guide 8 Backup and restore of the data 9

More information

CMSC131. Introduction to Computational Thinking. (with links to some external Scratch exercises) How do you accomplish a task?

CMSC131. Introduction to Computational Thinking. (with links to some external Scratch exercises) How do you accomplish a task? CMSC131 Introduction to Computational Thinking (with links to some external Scratch exercises) How do you accomplish a task? When faced with a task, we often need to undertake several steps to accomplish

More information

ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11

ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11 ELIMINATOR COMPETITION DRAG RACE Program Manual Firm Ver 4.11 The Portatree Eliminator Super 2000 Competition Track Timer can be used with an IBM Compatible Personal Computer connected through Com Port

More information

PREAMBLE. Why the Informatics Olympiad in Team were born

PREAMBLE. Why the Informatics Olympiad in Team were born PREAMBLE Why the Informatics Olympiad in Team were born 1. The primary objective is to stimulate the interest of young people in Computer Science and Information Technologies alongside to Personal Computer

More information

Software Manual for FITstep Pro Version 2

Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

FIBA Europe Coaching Website. Manual. Practice Section

FIBA Europe Coaching Website. Manual. Practice Section FIBA Europe Coaching Website Manual Practice Section CONTENTS Page 1. How to get started 3 Roster Management 4 Attendance 4 Practice Planner 5 2. Drills 8 Search Mask 8 Overview 11 Create Drill 13 3. Plays

More information

ALGE DIVE! ALGE. ALGE-TIMING GmbH & Co

ALGE DIVE! ALGE. ALGE-TIMING GmbH & Co ALGE ALGE DIVE! ALGE-TIMING GmbH & Co Rotkreuzstrasse 39 A-6890 Lustenau Telephone: +43 5577-85969 Fax: +43 5577-85969 e-mail: office@alge-timing.com Internet: www.alge-timing.com Table of contents 1.

More information

Populating Custom Excel Spreadsheets: The Non-DDE Way

Populating Custom Excel Spreadsheets: The Non-DDE Way Populating Custom Excel Spreadsheets: The Non-DDE Way Presented by: Winfried Jakob, SAS Administrator, Canadian Institute for Health Information, Ottawa TASS 2007-09-21 - Populating Custom Excel Spreadsheets

More information

Rescue Rover. Robotics Unit Lesson 1. Overview

Rescue Rover. Robotics Unit Lesson 1. Overview Robotics Unit Lesson 1 Overview In this challenge students will be presented with a real world rescue scenario. The students will need to design and build a prototype of an autonomous vehicle to drive

More information

Tennis Ireland National Player Database

Tennis Ireland National Player Database Tennis Ireland V1.2 Table of Contents Chapter 1... 1 Tennis Ireland Tournament Loader... 1 Application installation... 1 Chapter 2... 2 Manual loading of results (single matches)... 2 Match detail information...

More information

Review questions CPSC 203 midterm

Review questions CPSC 203 midterm Review questions CPSC 203 midterm Online review questions: the following are meant to provide you with some extra practice so you need to actually try them on your own to get anything out of it. For that

More information

Hot Springs Village Member Portal User Guide

Hot Springs Village Member Portal User Guide HOW TO USE THE MEMBER PORTAL: CHECK YOUR ACCOUNT BALANCE, MAKE ACCOUNT PAYMENTS, BOOK GOLF OR TENNIS RESERVATIONS, REPORT VISITORS TO THE EAST AND WEST GATES AND MUCH MORE. Table of Contents Portal Options...

More information

BIOLOGY OF THE INVERTEBRATES BY JAN PECHENIK DOWNLOAD EBOOK : BIOLOGY OF THE INVERTEBRATES BY JAN PECHENIK PDF

BIOLOGY OF THE INVERTEBRATES BY JAN PECHENIK DOWNLOAD EBOOK : BIOLOGY OF THE INVERTEBRATES BY JAN PECHENIK PDF Read Online and Download Ebook BIOLOGY OF THE INVERTEBRATES BY JAN PECHENIK DOWNLOAD EBOOK : BIOLOGY OF THE INVERTEBRATES BY JAN PECHENIK PDF Click link bellow and free register to download ebook: BIOLOGY

More information

East Bay Swim League. Training Guide and Reporting Manual. For EBSL Team Computer Directors Version 1.2

East Bay Swim League. Training Guide and Reporting Manual. For EBSL Team Computer Directors Version 1.2 East Bay Swim League For EBSL Version 1.2 1 Table of Contents Purpose! 3 Credits! 3 Teams Initials! 4 Groups and Sub Groups! 4 Event Numbers and Descriptions! 5 Team Rosters! 9 EBSL - Team Roster Format!

More information

McKnight Hockey Association

McKnight Hockey Association McKnight Hockey Association Electronic Evaluation Tool Manual 2013-2014 Table of Contents Introduction...3 Evaluation Tool...3 Login to OneClickIce...3 Evaluations...4 PROCESS...4 Evaluation Procedure...5

More information

Teacher Librarian Directions

Teacher Librarian Directions Teacher Librarian Directions Objective: Capitalizing on the engagement of the PokemonGo App game, students will use digital devices and QR Codes to explore the Library Media Center and discover important

More information

Full-Time People and Registrations Version 5.0

Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Version 5.0 Full-Time People and Registrations Page 1 1.0 People 1.1 How to Add New League Administrators 3 1.2 How to Add Other New Administrators 4 1.3 How to Change

More information

SENSUS PRO MANAGER (for SENSUS or SENSUS PRO devices) User s Guide -- Windows. Version 2.0 Published October 17, ReefNet Inc.

SENSUS PRO MANAGER (for SENSUS or SENSUS PRO devices) User s Guide -- Windows. Version 2.0 Published October 17, ReefNet Inc. SENSUS PRO MANAGER (for SENSUS or SENSUS PRO devices) User s Guide -- Windows Version 2.0 Published October 17, 2002 2002 ReefNet Inc. 1.0 Introduction The SENSUS PRO data recorder captures the time, depth,

More information

[XACT INTEGRATION] The Race Director. Xact Integration

[XACT INTEGRATION] The Race Director. Xact Integration 2018 The Race Director Xact Integration [XACT INTEGRATION] This document describes the steps in using the direct integration that has been built between Race Director and Xact. There are three primary

More information

HyperSecureLink V6.0x User Guide

HyperSecureLink V6.0x User Guide HyperSecureLink V6.0x User Guide Note: This software works with the LS-30 Version (06.0x or later) 1, Hardware Installation: 1-1, Connection Diagram for USB or RS-232 Computer Interface To LS-30 CM1 To

More information

Digi Connect ME 9210 Linux: serial port 2 for JTAG modules

Digi Connect ME 9210 Linux: serial port 2 for JTAG modules Digi Connect ME 9210 Linux: serial port 2 for JTAG modules Document History Date Version Change Description 08/05/2009 Initial entry/outline Table of Contents Document History... 2 Table of Contents...

More information

Rules of Soccer Simulation League 2D

Rules of Soccer Simulation League 2D Rules of Soccer Simulation League 2D (RoboCup2016 Leipzig, Germany) This document contains the rules for the RoboCup2016 Soccer Simulation League 2D competition in Leipzig, Germany. 1. Soccer Simulator

More information

MY MATC INTERNSHIP. Prepared by Shannon DeVivo

MY MATC INTERNSHIP. Prepared by Shannon DeVivo MY MATC INTERNSHIP Prepared by Shannon DeVivo PROJECT PURPOSE With the many classes that the University of Nebraska at Omaha has to offer in its Civil Engineering Department, I know it will be hard for

More information

Ideation methods! Capstone Fall Dr. Kate Fu Woodruff School of Mechanical Engineering

Ideation methods! Capstone Fall Dr. Kate Fu Woodruff School of Mechanical Engineering Ideation methods! Capstone Fall 2017 Dr. Kate Fu Woodruff School of Mechanical Engineering What you re going to learn today: How to: generate 40% more ideas in a team be a more crea5ve team member The

More information

Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Author: David Ponka, Senior Applications Expert Manufacturing

Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Author: David Ponka, Senior Applications Expert Manufacturing Inventor Hole Notes: How to Annotate with Drill Numbers Not Diameters Author: David Ponka, Senior Applications Expert Manufacturing Introduction Hole notes in Inventor are a great drawing aid that can

More information

Chaffey College Program Review Report

Chaffey College Program Review Report Program Title: Program Code: Review Type: Chaffey College Program Review Report 2008-2009 Program Mission: The mission of the program is to introduce students to a transfer program in Engineering. Overview

More information

Tournament Manager: Running a VEX IQ Event - Beginner

Tournament Manager: Running a VEX IQ Event - Beginner Tournament Manager: Running a VEX IQ Event - Beginner Indiana IQ Event Partner Workshop Agenda 1. Main Window a. Once i. The Main Window has a standard menu bar. ii. A series of tabbed pages filling the

More information

uemis CONNECT: Synchronisation of the SDA with myuemis

uemis CONNECT: Synchronisation of the SDA with myuemis uemis CONNECT: Synchronisation of the SDA with myuemis 1 What is myuemis? In myuemis, your private area on the Internet portal www.uemis.com, you can visualise your dives, manage your database and transfer

More information

DakStats Football Quick Start Guide 1 of 7

DakStats Football Quick Start Guide 1 of 7 DakStats Football Quick Start Guide 1 of 7 This quick start guide for DakStats Football is designed to familiarize new users with the main features and entry modes of the program. For more complete instructions,

More information

Navy Guidance and Tips for Using DOEHRS-IH Ventilation NAVY & MARINE CORPS PUBLIC HEALTH CENTER

Navy Guidance and Tips for Using DOEHRS-IH Ventilation NAVY & MARINE CORPS PUBLIC HEALTH CENTER Navy Guidance and Tips for Using DOEHRS-IH Ventilation NAVY & MARINE CORPS PUBLIC HEALTH CENTER October 2010 Purpose This document is a supplemental Navy guide to the DOEHRS Student Guide/User Manual Version

More information

Start - All Programs - Class Software - Scratch - Scratch move move move Sound play drum move move move play drum Control forever forever forever

Start - All Programs - Class Software - Scratch - Scratch move move move Sound play drum move move move play drum Control forever forever forever Scratch Exercise A. Choose Start - All Programs - Class Software - Scratch - Scratch. B. Let's start with a very simple project we'll call Dancing Sprite. This example has been adapted from the exercise

More information

Diver-Pocket Diver-Pocket Premium

Diver-Pocket Diver-Pocket Premium User s Manual Diver-Pocket Diver-Pocket Premium Copyright Information 2011 Schlumberger Water Services. All rights reserved. No portion of the contents of this publication may be reproduced or transmitted

More information

Hot Springs Village Member Portal User Guide

Hot Springs Village Member Portal User Guide Contents Portal Options... 2 Portal Display:... 2 MAIN Options:... 2 E-COMMERCE Options... 2 Annual Registrations... 2 Pets... 2 Boats... 3 Carts... 3 Vehicles... 3 GHIN... 4 Annual Passes... 4 My Transactions...

More information

How to Setup and Score a Tournament. May 2018

How to Setup and Score a Tournament. May 2018 How to Setup and Score a Tournament May 2018 What s new for 2018 As the rules change, the programmers must adjust the scoring program as well. Feedback from scorers also assist in providing ways to make

More information

Homework Exercises Problem Set 1 (chapter 2)

Homework Exercises Problem Set 1 (chapter 2) 1 Name: Homework Exercises Problem Set 1 (chapter 2) Exercise 2.5.1 The 10 third-grade students at Lake Wobegone elementary school took a spelling test with 10 words, each worth one point. Given that the

More information

The Great Kayak Expedition

The Great Kayak Expedition Ethan went on a kayaking expedition down the Ottauquechee River last week. He left school at 2:35 and paddled downstream 3 miles until he hit the sewage treatment plant at 3:05. He decided to get out of

More information

FireHawk M7 Interface Module Software Instructions OPERATION AND INSTRUCTIONS

FireHawk M7 Interface Module Software Instructions OPERATION AND INSTRUCTIONS FireHawk M7 Interface Module Software Instructions OPERATION AND INSTRUCTIONS WARNING THE WARRANTIES MADE BY MSA WITH RESPECT TO THE PRODUCT ARE VOIDED IF THE PRODUCT IS NOT USED AND MAINTAINED IN ACCORDANCE

More information

Boyle s Law: Pressure-Volume Relationship in Gases

Boyle s Law: Pressure-Volume Relationship in Gases Boyle s Law: Pressure-Volume Relationship in Gases The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we will use is air,

More information

AGW SYSTEMS. Blue Clock W38X

AGW SYSTEMS. Blue Clock W38X AGW SYSTEMS Blue Clock W38X Contents table BLUECLOCKS...3 THE EVOLUTION...4 WHAT S NEW!...5 HARDWARE...6 SOFTWARE...7 MULTI COMPANY...8 INSTANTLY...9 EVEN MORE!...10 WHAT S INSIDE HOW DOES IT WORK...11...12

More information

XC2 Client/Server Installation & Configuration

XC2 Client/Server Installation & Configuration XC2 Client/Server Installation & Configuration File downloads Server Installation Backup Configuration Services Client Installation Backup Recovery Troubleshooting Aug 12 2014 XC2 Software, LLC Page 1

More information

Curl To Win By Russ Howard

Curl To Win By Russ Howard Curl To Win By Russ Howard Curl is a command line tool for transferring data with URL syntax, supporting If you're using the curl command line tool on Windows, curl will Kick-off the New Year by playing

More information

Table of Content IMPORTANT NOTE: Before using this guide, please make sure you have already set up your settings in

Table of Content IMPORTANT NOTE: Before using this guide, please make sure you have already set up your settings in Quick Start Guide Table of Content Introduction... 3 Prerequisites... 3 How to Open QQEvolution 2... 4 How to do Carrier Downloads... 5 Locating a Client in QQEvolution 2... 7 Adding a New Client... 8

More information

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2015 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

Kindergarten Scavenger Hunt Activity

Kindergarten Scavenger Hunt Activity Kindergarten Scavenger Free PDF ebook Download: Kindergarten Download or Read Online ebook kindergarten scavenger hunt activity in PDF Format From The Best User Guide Database Systems of Equations. Math

More information

Math Released Item Grade 4 PBA Item #17 Number of Baskets VF565302

Math Released Item Grade 4 PBA Item #17 Number of Baskets VF565302 Math Released Item 2015 Grade 4 PBA Item #17 Number of Baskets VF565302 Prompt Rubric Task is worth a total of 6 points. VF565302 Rubric Part A Score Description 2 Student response includes the following

More information

Prerequisites: Layout:

Prerequisites: Layout: Create a.csv File to Import Competitors. Excel, (and most other spread sheets), databases and some word processors allow the export of data ("save as..") a 'flat' text file in Comma Separated Variables

More information

SoundCast Design Intro

SoundCast Design Intro SoundCast Design Intro Basic Design SoundCast and Daysim 3 Land use attributes Households & Individuals SoundCast DaySim Travel demand simulator Trips and Households, Excel Summary Sheets, EMME network

More information

TRAP MOM FUN SHOOT 2011

TRAP MOM FUN SHOOT 2011 TRAP MOM FUN SHOOT 2011 Program Manual 2011 - Trap Mom Software - CYSSA Fun Shoot - Build 8 REQUIRED TO RUN THIS PROGRAM APPLE USERS: 1. OS X Mac Computer (Intel Preferred) 2. Printer (Laser recommended)

More information

Working with Marker Maps Tutorial

Working with Marker Maps Tutorial Working with Marker Maps Tutorial Release 8.2.0 Golden Helix, Inc. September 25, 2014 Contents 1. Overview 2 2. Create Marker Map from Spreadsheet 4 3. Apply Marker Map to Spreadsheet 7 4. Add Fields

More information

Week 1 18 January Wednesday 19 January Thursday 20 January Friday

Week 1 18 January Wednesday 19 January Thursday 20 January Friday Week 1 18 January Wednesday 19 January Thursday 20 January Friday 9:00 am 9:00 am 10:30 am Welcome & Introduction to Program Student Development 9:45 am International () Matthew Byron 10:30 am 10:30 am

More information

- 2 - Companion Web Site. Back Cover. Synopsis

- 2 - Companion Web Site. Back Cover. Synopsis Companion Web Site A Programmer's Introduction to C# by Eric Gunnerson ISBN: 1893115860 Apress 2000, 358 pages This book takes the C programmer through the all the details from basic to advanced-- of the

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. NXT Main Menu My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the

More information

The system design must obey these constraints. The system is to have the minimum cost (capital plus operating) while meeting the constraints.

The system design must obey these constraints. The system is to have the minimum cost (capital plus operating) while meeting the constraints. Computer Algorithms in Systems Engineering Spring 2010 Problem Set 6: Building ventilation design (dynamic programming) Due: 12 noon, Wednesday, April 21, 2010 Problem statement Buildings require exhaust

More information

Number crunch. Number crunch. Activity overview. Time required. Materials. Preparation. Activity steps. Key Learning Area Mathematics English

Number crunch. Number crunch. Activity overview. Time required. Materials. Preparation. Activity steps. Key Learning Area Mathematics English Activity overview Students engage in a series of activities designed to demonstrate the important role numbers play in communicating information. Students will investigate the scoring systems used in a

More information

Finding peer-reviewed articles. Slide 1 - Slide 1. Page 1 of 33

Finding peer-reviewed articles. Slide 1 - Slide 1. Page 1 of 33 Slide 1 - Slide 1 Page 1 of 33 Slide 2 - Slide 2 In this tutorial, you will learn how to find peer-reviewed journal articles. Let's say that you are interested in the potential impacts of global warming

More information

MPCS: Develop and Test As You Fly for MSL

MPCS: Develop and Test As You Fly for MSL MPCS: Develop and Test As You Fly for MSL GSAW 2008 Michael Tankenson & Lloyd DeForrest Wednesday April 2, 2008 Copyright 2008 California Institute of Technology. Government sponsorship acknowledged. Mission

More information

International olympiads in Informatics in Kazakhstan. A. Iglikov Z. Gamezardashvili B. Matkarimov

International olympiads in Informatics in Kazakhstan. A. Iglikov Z. Gamezardashvili B. Matkarimov International olympiads in Informatics in Kazakhstan A. Iglikov Z. Gamezardashvili B. Matkarimov Olympiads overview Till 2003: - National Olympiad in Informatics for secondary school students (organized

More information

ENGLISH. uemis ZURICH. SDA Scuba Diver Assistant Quick Reference Guide

ENGLISH. uemis ZURICH. SDA Scuba Diver Assistant Quick Reference Guide EN ENGLISH uemis ZURICH SDA Scuba Diver Assistant Quick Reference Guide 2 21 Getting Started Carefully read the detailed instruction manual before diving with the Scuba Diver Assistant (SDA). Don t use

More information

Spacecraft Simulation Tool. Debbie Clancy JHU/APL

Spacecraft Simulation Tool. Debbie Clancy JHU/APL FSW Workshop 2011 Using Flight Software in a Spacecraft Simulation Tool Debbie Clancy JHU/APL debbie.clancy@jhuapl.edu 443-778-7721 Agenda Overview of RBSP and FAST Technical Challenges Dropping FSW into

More information

Digi Connect ME 9210 Linux: 2 nd serial over FIM

Digi Connect ME 9210 Linux: 2 nd serial over FIM Digi Connect ME 9210 Linux: 2 nd serial over FIM Document History Date Version Change Description 09/04/2009 Initial entry/outline Table of Contents Document History... 2 Table of Contents... 2 1 Problem

More information

Prentice Hall Reader, The (9th Edition) By George E. Miller

Prentice Hall Reader, The (9th Edition) By George E. Miller Prentice Hall Reader, The (9th Edition) By George E. Miller The reader is also directed to With the foregoing review in mind, the reader will appreciate the.. Wade, L.G. Jr.: Organic Chemistry, 4th Edition,

More information

The ICC Duckworth-Lewis Calculator. Professional Edition 2008

The ICC Duckworth-Lewis Calculator. Professional Edition 2008 The ICC Duckworth-Lewis Calculator Professional Edition 2008 (Version 1.1) Installation and operating instructions Any queries about operating the program should be sent to steven.stern@anu.edu.au 2008

More information

USER MANUAL

USER MANUAL USER MANUAL WWW.SVILEN.INFO/FIGHTSCORE CONTENTS 1. Introduction... 3 2. Phone Application... 4 2.1. Score... 4 2.1.1. Score Setup Details... 5 2.1.2. How to Score?... 8 2.1.3. Score Ready... 13 2.2. Browse...

More information

Workshops & Tours WEDNESDAY. 7:30am-9:30pm. June 27. Library Tour 8:30 am 9:00 am and 12:30 pm 1:00 pm

Workshops & Tours WEDNESDAY. 7:30am-9:30pm. June 27. Library Tour 8:30 am 9:00 am and 12:30 pm 1:00 pm Mt. SAC Library Workshops & Tours See p. 4 for sessions listed by start time. See pp. 5-6 for descriptions & more info. Summer 2018 SUNDAY MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY June 17 June

More information

Northeastern Illinois Public Safety Training Academy. Course Syllabus 205

Northeastern Illinois Public Safety Training Academy. Course Syllabus 205 Northeastern Illinois Public Safety Training Academy Course Syllabus 205 Title: Vehicle & Machinery Operations Type: Campus Training Program (CTP) Program Duration: 40 hours Coordinator: K. Burns Course

More information

Overview. 2 Module 13: Advanced Data Processing

Overview. 2 Module 13: Advanced Data Processing 2 Module 13: Advanced Data Processing Overview This section of the course covers advanced data processing when profiling. We will discuss the removal of the fairly gross effects of ship heave and talk

More information

MANUAL TIMING. PRACTICAL GUIDE

MANUAL TIMING. PRACTICAL GUIDE MANUAL TIMING. PRACTICAL GUIDE TABLE OF CONTENTS 1. Introduction... 2 2. Small Events... 2 2.1. Capturing Times... 3 2.2. Saving Results... 4 3. Mid-Sized Events... 5 3.1. Capturing Times... 6 3.2. Recording

More information

N4 Hazards (Hazardous Cargo) Training Document

N4 Hazards (Hazardous Cargo) Training Document N4 Hazards (Hazardous Cargo) Training Document Prepared By: Gene Ferguson, Leslie Edmondson 1 Table of Content A. Typographical Conventions B. Additional Training C. Hazards form 1. Define 2. Add 3. Update

More information

The Norwood Science Center 2005

The Norwood Science Center 2005 The Norwood Science Center Forces Grade BACKGROUND INFORMATION: Pulleys are wheels, just like gears. However, while the gear has teeth along the circumference the pulley has a groove. This groove is a

More information

In addition to reading this assignment, also read Appendices A and B.

In addition to reading this assignment, also read Appendices A and B. 1 Kinematics I Introduction In addition to reading this assignment, also read Appendices A and B. We will be using a motion detector to track the positions of objects with time in several lab exercises

More information

Getting Started with the LabVIEW Toolkit for LEGO MINDSTORMS NXT

Getting Started with the LabVIEW Toolkit for LEGO MINDSTORMS NXT Getting Started with the LabVIEW Toolkit for LEGO MINDSTORMS NXT Contents Overview...2 Mass Compiling...2 Building a LabVIEW VI that Runs on the NXT...3 Running a LabVIEW VI on the NXT...4 Building a LabVIEW

More information

Standard Operating Procedure Porosity Analyzer - The Micromeritics Tri-Star II (surface area) with Micrometrics VacPrep 061 (Sample Degas System)

Standard Operating Procedure Porosity Analyzer - The Micromeritics Tri-Star II (surface area) with Micrometrics VacPrep 061 (Sample Degas System) Standard Operating Procedure Porosity Analyzer - The Micromeritics Tri-Star II (surface area) with Micrometrics VacPrep 061 (Sample Degas System) The Micromeritics Tri-Star II Surface Area and Porosity

More information

Step 1. CoderDojo Milltown Exercise 1 Pong Page 1 of 13

Step 1. CoderDojo Milltown Exercise 1 Pong Page 1 of 13 CoderDojo Milltown Exercise 1 Pong Page 1 of 13 Step 1 Open up Scratch on your computer or online at http://scratch.mit.edu/projects/editor/? tip_bar=getstarted Scratch 1.4 looks like this Scratch 2.0

More information

USA Jump Rope Tournament Software User Guide 2014 Edition

USA Jump Rope Tournament Software User Guide 2014 Edition USA Jump Rope Tournament Software User Guide www.usajumprope.org Table of Contents Contents System Requirements... 3 System Conventions... 4 Phase 1 Tournament Pre registration Preparation... 5 Name Your

More information

1. SYSTEM SETUP AND START TOURNAMENT... 8

1. SYSTEM SETUP AND START TOURNAMENT... 8 PICTORIAL HANDBALL MATCH STATISTICS (PHMS for Windows 7 Version E5.1) User's Manual November 2011 1. SYSTEM... 6 1.1 INTRODUCTION... 6 1.2 SYSTEM NAME... 6 1.3 SYSTEM FUNCTION... 7 2. SETUP AND START...

More information

Autodesk Inventor 2010 Education Curriculum

Autodesk Inventor 2010 Education Curriculum Page 1 of 9 Autodesk Inventor 2010 Education Curriculum Open the File A robot design team started designing the chain drive assembly. In discussion with the team, you discover that they are designing the

More information

Expectations Grid Middle Schools

Expectations Grid Middle Schools Expectations Grid Middle Schools School Setting School-wide Behavioral Expectations Year School Rules REYNOLDS MIDDLE SCHOOL Student Expectations Respect Others Manage Self Stay Safe Common Area Respect

More information

The New Mexico Lottery Continued. Lotteries II 1/26

The New Mexico Lottery Continued. Lotteries II 1/26 The New Mexico Lottery Continued Lotteries II 1/26 Last Time Last time we discussed Pick 3 and Powerball. Today we ll finish up our discussion of Powerball and discuss Roadrunner Cash. Lotteries II 2/26

More information

Perfect Golf Quick Start Guide

Perfect Golf Quick Start Guide Quick Start Guide Perfect Golf Quick Start Guide To play Perfect Golf you must first have purchased the following: 1. A SkyTrak Launch Monitor 2. Have an active Play and Improve Package 3. Have purchased

More information