EEG Electrode Localizer

Size: px
Start display at page:

Download "EEG Electrode Localizer"

Transcription

1 EEG Electrode Localizer submitted by: HyoJong Jang ( hj97@drexel.edu ) Pooja Konath Alvalappil ( pk495@drexel.edu ) Jesse Mark ( jam673@drexel.edu ) Coursework BMES 546 Fall 2015 Supervisor: Ahmet Sacan 1

2 Abstract Electroencephalography is a non-invasive state of the art technique in detecting electrical activity of the brain using electrodes attached to the scalp of the patient. EEG is used as a diagnostic tool to detect epilepsy, encephalopathy, brain death, and so on. Moreover, it is a powerful research tool for elucidating neural correlates of cognition. The most common method for positioning of electrodes is the international system. Different regions of the brain are associated with different functions, and therefore to assess a particular function of the brain, electrodes covering that specific area should be focused on during the reading. But oftentimes, it is difficult to relate the electrode positions with specific functional regions while using the actual EEG. The aim of this project is to create a tool which is able to both teach the user about which standard electrodes relate to which functional region, as well as be used post hoc to understand the quantitative percent of each region that is generating signal. Problem Description Our goal with this project was to create an easy to use interface in MATLAB that would be useful for the inexperienced and experts alike. We determined from the concept that using a version of the international positioning system would be ideal, and chose the specific number of electrodes (roughly 75 total) to allow for a wide range of coverage over the cortex while still remaining a reasonable and not overwhelming amount. In discussing what would be the most useful functions our program should provide, we came up with two answers which became the different modes. The user should be able to select an entire functional region of the cortex at once, either the left or right sides, to get a general picture of how our brains are laid out. The user should also be able to select specific electrodes themselves to determine both what they reference and how much of the underlying region they cover. This interaction is both practical when trying to learn or quiz yourself, and also has the ability to save and load one layout at a time at the push of a button. The excel file can then be shared between users in order to communicate visually and interactively, rather than being constrained to words or a static image. 2

3 Flowchart (Fig 1) Process flowchart Figure 1 demonstrates the flow of process through the program. When the program starts, all information will be loaded from electrodeposition.xlsx in OpeningFcn of the GUI. This file includes all center(x,y) position and radii of each electrode circle and each electrode labeled group number(1~10) and L/R(0,1,2 corresponding to left, right and center). Use of the program is cyclic and dynamically self-updating, and lets the user freely switch between the two modes of use whenever they wish to. Another version demonstrating this property 3

4 of our GUI is shown below. The methods of each section specifically will be discussed further on. Description of GUI Usage The GUI that appears initially when the program is run contains two push buttons at the top named Region Selection Mode and Electrode Selection Mode. These are the two modes used in this project. Mode 1 is selected as the default mode at startup. A list of nine functional regions of the cortex with 2 checkboxes for the Left and Right of each region are available. Upon clicking these boxes, the figure showing electrodes on the brain displayed on the right side of the GUI changes to highlight the electrodes corresponding to the particular selection made. Also, the electrodes are color coded to match the color of the functional region selected. For example, if the left box of prefrontal cortex is selected, then 10 electrodes on the left (including 3 electrodes in the center) are highlighted in a pink color. This mode thus gives an idea to the user on the electrodes associated with each region. Fig 2 shows an example of mode 1. (Fig 2) Region Selection Mode Upon clicking the Electrode Selection Mode push button, the check boxes will change to text area showing 0% as default value. In this mode, the user can select the electrodes on the figure on the right side with the mouse and update the percentage of each section with each click. The percentage of the functional areas covered by the electrode(s) selected will be displayed across that specific area. Selection of multiple electrodes at one time is possible. The user can deselect an already selected electrode by clicking on it a second time. Additionally, 2 more push buttons labeled as Save and Load buttons are provided in the second mode that appears at the bottom-right portion of the screen. These 4

5 buttons help the user to save the selected electrode layout and the corresponding percentages for future reference, and if desired also load the last saved data to the GUI. If the user makes a selection outside the boundaries of the electrode or buttons, then an error message Selected point not in electrode circle is generated. Mode 2 also has Electrode Selection Reset button which resets all the electrode selections made in mode 2 along with the percentages. Fig 6 shows an example of mode 2. Data Representation allcenter x,y positions of all circles 75 x 2 allradii radii of all circles 75 x 1 raw loaded data from electrodeposition.xlsx currentmode stores current mode(0 or 1 region or electrode selection) handlecheckboxl# handle string of each left checkbox# (dynamic var) handlecheckboxr# handle string of each right checkbox# (dynamic var) handlepercentl# handle string of each left percent text for dynamic var handlepercentr# handle string of each right percent text for dynamic var Group# total number of Group# (dynamic var) nlgroup# total number of selected left Group# (dynamic var) nrgroup# total number of selected right Group# (dynamic var) SelectedIdx maintains list of indices which was selected CircleColor pre defined color map for each region 10x3 currentmousex current x position when mouse is clicked currentmousey current y position when mouse is clicked ntotaleachregion total number of each region(l/r) selected 10x2 nselectedgroup# total number of each region#(all) selected (dynamic var) loadpercent store percent rate when load 5

6 Method & Results (Fig 3) Structure of excel file electrodeposition.xlsx In Fig 3, the green region contains the information the program uses for initialization and positioning, and also has practical information about the electrodes. The blue region contains the saving and loading functionality. When we save in Mode 2 (Electrode Selection Mode), we save each position as 1 (selected) or 0 (not selected) as well as the calculated percentage of the related functional area. Thus, when we use the GUI load button, this function will always load the latest saved data from the blue region. The center positions and radii of the electrode positions were calculated from imfindcircles in the Image Processing Toolbox. By using this function, we could avoid the tedious manual process for finding all center positions and radii for the circles. Below is the code which we used for automatic detection of circles. A = imread('eeg.png'); [centers, radii] = imfindcircles(a,[20 30],'ObjectPolarity','dark'); From this information, we could draw circles by using viscircles function in the Image Processing Toolbox. As we show the brain map image when the program starts, we 6

7 drew all circles in black as the initialization state. The left image below is the original image of our brainmap and the right image is the initialized image with blackened circles. (Fig 4) original image and initialized image This is a workaround we used because we were unable to remove the circles easily after they were drawn. Therefore, each time an electrode is selected or unselected, what really happens is that circles are being drawn on top of each other over and over (however, the reset button and related method wipe clear all the circles). This is one area which can be improved in future releases. The predefined colors for each region were intended to be distinct from each other and visible on most monitors. The figure below shows every electrode selected in Mode 1. The circles that remain black are outside the functional regions we used, but can still be selected and contribute to the total percentage of head coverage. They can be saved, but are not visible due to their color. (Fig 5) 7

8 In Mode 2 (Electrode Selection Mode), individual electrodes are selected in the brainmap image and the resulting percentage covered is calculated after each click. Below is an image of this mode in use. (Fig 6) Coverage calculation result example The specifics used in the above calculations of the percentage of each region covered have some idiosyncrasies that arose due to the particular layout we chose as well as how we defined our areas. The initial decision to split the brain into the left and right hemispheres was to allow for more information to give to the user. However, this brought up the issue of what to do with the midline electrodes. In the end, we made these electrodes count for both the left and right sides. This can be seen in the Region Selection mode where checking either side lights up the middle. The calculation of the percentages in the table will be explained using the Supplementary and Premotor cortex areas as an example (in orange above). All three electrodes of the left side (FC3, FC1, FCz) are selected, therefore 100% of this region is selected. Only one of the three electrodes for the right (FCz, FC2, FC4) are selected, so ⅓or 33% is covered. In total, ⅗electrodes of the entire cortex are selected, which turns into the 60% in the All column. The Total calculation is done in a similar fashion, with each left and right calculation being total # electrodes selected / total on one side (including midline). This, however, includes the black unaccounted-for electrode positions, so it is slightly difficult for the user to know when they are selected. This can be updated in future releases 8

9 by either finding what functional areas they cover, including them in the nearest region, removing them entirely from selectability, or creating an other category that contains them all together. We made our decision this time based on what we thought made sense to the project, but if this continued we would conduct user studies to find what makes the most sense and is the most desired format. The user can also deselect an already selected electrode. All the previous selected positions are stored in SelectedIdx and any new position selected is added to the end of SelectedIdx. This new position is then compared to the existing positions. Both the old and new positions are removed from SelectedIdx if there is a match. If so, the circle s color is changed back to black and the percentages are updated again. Selection detection is limited to inside the electrode circles in mode 2. To determine whether the clicked position is in the circle or not, we calculate the distance between the current position and each center position of all circles. Among all the circles (electrodes), there would be only one case where the calculated distance is less than the defined radius of circle, and we stored the index when this condition is satisfied and an error message is generated when it is not. Conclusions and Future Work One process we automated was using dynamic variables. The dynamic variables were used for setting a number of objects such as checkboxes and static text simultaneously when mode change or selection reset occurred. This is because changing the status of each object one by one is very tedious and redundant. By defining the handle of each object as a string including distinguished index, we could reduce the lines of code. In order to use the string of handles as a variable, we used sprintf to make a complete string of variables as the index varies in each for loop. Then we applied the eval function of the string to make the dynamic variable include each index. The creation of a program from scratch designed around the concept of a simple yet useful tool for EEG electrode placement brought together many of the concepts we learned in class. From the blueprinting stage, we wanted to pick a task that would be possible given our skills yet still present a challenge. The challenges started immediately. Simply matching each of the electrodes on our grid to functional cortex areas, and moreover in a way that made sense, covered a wide variety of functions, and didn t present overlaps was far more difficult than expected. Not many sources specifically link electrodes to the areas of interest, which in exchange makes our tool all the more novel and valuable for others to use. Given more time and enthusiasm, there are several areas which we could improve. One interesting update would be to allow for the choice of several different setups including 9

10 a variable number of electrodes on each. We used a 75 electrode system, but there are times when as small as 20 or as large as over 200 would be beneficial. The same concept of area selection or electrode selection could be imported, but the resolution would be different. While we re at it, so long as the image fits certain requirements we could use our automatic circle detection method and smart area mapping to allow for custom images to be imported. Right now we use an Excel file for all of our data storage, but we could also change it to allow for databases, or even csv files with a choice of format. And this was stated earlier, but allowing for more or even overlapping functional regions of the cortex would add more realism to our simulation. A clever use of colors and highlighting could present the user with an intuitive yet deep interface to explore the possibilities of EEG. Appendix After our in-class presentation, one additional function was added to the GUI. The additional function is the selection cancel function. The detailed method is described above in results. Below is a table of the functions used in our project. Function name Description Input Output Other action isselectedinelectrode Determine whether the current selected position is in the circle of electrode or not. Object, eventdata, handles Return 0 or 1( in the circle or not) SelectedIdx Display dialogu e box when clicked outside the circle CalculateRateRegion Calculate the rate related with brain region Object, eventdata, handles ntotaleachre gion, nselectedgro up Update the rates for each region drawcircle_checkbox draw circle when checkbox was clicked GroupNumber of Checkbox and L/R (0/1) Draw circles 10

Asset Track Getting Started Guide. An Introduction to Asset Track

Asset Track Getting Started Guide. An Introduction to Asset Track Asset Track Getting Started Guide An Introduction to Asset Track Contents Introducing Asset Track... 3 Overview... 3 A Quick Start... 6 Quick Start Option 1... 6 Getting to Configuration... 7 Changing

More information

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin:

Once you have obtained a username and password you must open one of the compatible web browsers and go to the following address to begin: CONTENT MANAGER GUIDELINES Content Manager is a web-based application created by Scala that allows users to have the media they upload be sent out to individual players in many locations. It includes many

More information

ABOUT THIS DOCUMENT ABOUT CHARTS/COMMON TERMINOLOGY

ABOUT THIS DOCUMENT ABOUT CHARTS/COMMON TERMINOLOGY A. Introduction B. Common Terminology C. Introduction to Chart Types D. Creating a Chart in FileMaker E. About Quick Charts 1. Quick Chart Behavior When Based on Sort Order F. Chart Examples 1. Charting

More information

Multi-Touch Ring Encoder Software Development Kit User s Guide

Multi-Touch Ring Encoder Software Development Kit User s Guide Multi-Touch Ring Encoder Software Development Kit User s Guide v2.0 Bulletin #1198 561 Hillgrove Avenue LaGrange, IL 60525 Phone: (708) 354-1040 Fax: (708) 354-2820 E-mail: instinct@grayhill.com On the

More information

Using Microsoft Project 2000

Using Microsoft Project 2000 Using MS Project Personal Computer Fundamentals 1 of 45 Using Microsoft Project 2000 General Conventions All text highlighted in bold refers to menu selections. Examples would be File and Analysis. ALL

More information

Designing a Schematic and Layout in PCB Artist

Designing a Schematic and Layout in PCB Artist Designing a Schematic and Layout in PCB Artist Application Note Max Cooper March 28 th, 2014 ECE 480 Abstract PCB Artist is a free software package that allows users to design and layout a printed circuit

More information

How to Connect to Anonyproz OpenVPN Servers in Failover and Switcher Modes

How to Connect to Anonyproz OpenVPN Servers in Failover and Switcher Modes How to Connect to Anonyproz OpenVPN Servers in Failover and Switcher Modes Anonyproz provides a powerful and feature-packed customized open source OpenVPN GUI client. The latest GUI offers our subscribers

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters:

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters: : Manipulating Display Parameters in ArcMap Symbolizing Features and Rasters: Data sets that are added to ArcMap a default symbology. The user can change the default symbology for their features (point,

More information

TestManager Administration Guide

TestManager Administration Guide TestManager Administration Guide RedRat Ltd July 2015 For TestManager Version 4.57-1 - Contents 1. Introduction... 3 2. TestManager Setup Overview... 3 3. TestManager Roles... 4 4. Connection to the TestManager

More information

KPN SMS mail. Send SMS as fast as e-mail!

KPN SMS mail. Send SMS as fast as e-mail! KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.

More information

1 FTire/editor s Main Menu 1

1 FTire/editor s Main Menu 1 FTire/editor FTire Data File Editor and Analyzer Documentation and User s Guide Contents 1 FTire/editor s Main Menu 1 2 FTire/editor s Data Entry Menus 2 2.1 The Tire Size and Specification Data Menu........................

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

EPM Performance Suite Profitability Administration & Security Guide

EPM Performance Suite Profitability Administration & Security Guide BusinessObjects XI R2 11.20 EPM Performance Suite Profitability Administration & Security Guide BusinessObjects XI R2 11.20 Windows Patents Trademarks Copyright Third-party Contributors Business Objects

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

A Beginners Guide to Track Laying.

A Beginners Guide to Track Laying. A Beginners Guide to Track Laying. I should first say that none of the material below is original. I have made use of many sources of information and have often copied directly from them. All I claim to

More information

Agile QA Process. Anand Bagmar Anand.Bagmar@thoughtworks.com abagmar@gmail.com http://www.essenceoftesting.blogspot.com. Version 1.

Agile QA Process. Anand Bagmar Anand.Bagmar@thoughtworks.com abagmar@gmail.com http://www.essenceoftesting.blogspot.com. Version 1. Agile QA Process Anand Bagmar Anand.Bagmar@thoughtworks.com abagmar@gmail.com http://www.essenceoftesting.blogspot.com Version 1.1 Agile QA Process 1 / 12 1. Objective QA is NOT the gatekeeper of the quality

More information

SWAN 15.1 Advance user information What s new in SWAN? Introduction of the new user interface. Last update: 28th April 2015

SWAN 15.1 Advance user information What s new in SWAN? Introduction of the new user interface. Last update: 28th April 2015 SWAN 15.1 Advance user information What s new in SWAN? Introduction of the new user interface Last update: 28th April 2015 Daimler SWAN 15.1 - New GUI - Version April 28th, 2015 2 Content Highlights of

More information

Lottery Looper. User Manual

Lottery Looper. User Manual Lottery Looper User Manual Lottery Looper 1.7 copyright Timersoft. All rights reserved. http://www.timersoft.com The information contained in this document is subject to change without notice. This document

More information

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement

R&S AFQ100A, R&S AFQ100B I/Q Modulation Generator Supplement I/Q Modulation Generator Supplement The following description relates to the Operating Manuals, version 03 of R&S AFQ100A, and version 01 of R&S AFQ100B. It encloses the following topics: LXI features,

More information

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL TABLE OF CONTENTS CORSAIR UTILITY ENGINE OVERVIEW PROFILES 1 9 Introduction 2 Starting the Corsair Utility Engine 2 Profiles: Settings for a Specific Program

More information

Introduction to CATIA V5

Introduction to CATIA V5 Introduction to CATIA V5 Release 16 (A Hands-On Tutorial Approach) Kirstie Plantenberg University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com www.schroff-europe.com

More information

Visual Dialogue User Guide. Version 6.1

Visual Dialogue User Guide. Version 6.1 Visual Dialogue User Guide Version 6.1 2015 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its

More information

ELAD FDM-SW1 USER MANUAL. Ver. 1.0

ELAD FDM-SW1 USER MANUAL. Ver. 1.0 ELAD FDM-SW1 USER MANUAL Ver. 1.0 Index 1 FDM-SW1 Overview... 4 2 Graphical User Interface (GUI)... 5 2.1 Display Window... 6 2.1.1 Filter Spectrum... 6 2.1.2 Click Options... 7 2.1.3 Graphics Settings...

More information

There are two distinct working environments, or spaces, in which you can create objects in a drawing.

There are two distinct working environments, or spaces, in which you can create objects in a drawing. That CAD Girl J ennifer dib ona Website: www.thatcadgirl.com Email: thatcadgirl@aol.com Phone: (919) 417-8351 Fax: (919) 573-0351 Autocad Model Space and Paper Space Model Space vs. Paper Space Initial

More information

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher

OPERATION MANUAL. MV-410RGB Layout Editor. Version 2.1- higher OPERATION MANUAL MV-410RGB Layout Editor Version 2.1- higher Table of Contents 1. Setup... 1 1-1. Overview... 1 1-2. System Requirements... 1 1-3. Operation Flow... 1 1-4. Installing MV-410RGB Layout

More information

If you know exactly how you want your business forms to look and don t mind

If you know exactly how you want your business forms to look and don t mind appendix e Advanced Form Customization If you know exactly how you want your business forms to look and don t mind detail work, you can configure QuickBooks forms however you want. With QuickBooks Layout

More information

Maplex Tutorial. Copyright 1995-2010 Esri All rights reserved.

Maplex Tutorial. Copyright 1995-2010 Esri All rights reserved. Copyright 1995-2010 Esri All rights reserved. Table of Contents Introduction to the Maplex tutorial............................ 3 Exercise 1: Enabling Maplex for ArcGIS and adding the Labeling toolbar............

More information

Dash 18X / Dash 18 Data Acquisition Recorder

Dash 18X / Dash 18 Data Acquisition Recorder 75 Dash 18X / Dash 18 Data Acquisition Recorder QUICK START GUIDE Supports Recorder System Software Version 3.1 1. INTRODUCTION 2. GETTING STARTED 3. HARDWARE OVERVIEW 4. MENUS & BUTTONS 5. USING THE DASH

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

Receptionist console. User guide 1.1

Receptionist console. User guide 1.1 Receptionist console User guide 1.1 Contents Introduction and purpose... 4 Common deployments of the receptionist console... 5 Fixed Receptionist Console... 5 Soft Receptionist Console... 5 Multiple site

More information

We are going to investigate what happens when we draw the three angle bisectors of a triangle using Geometer s Sketchpad.

We are going to investigate what happens when we draw the three angle bisectors of a triangle using Geometer s Sketchpad. Krystin Wright Geometer s Sketchpad Assignment Name Date We are going to investigate what happens when we draw the three angle bisectors of a triangle using Geometer s Sketchpad. First, open up Geometer

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

AXIS 211A Network Camera

AXIS 211A Network Camera PRODUCT REVIEW GUIDE TABLE OF CONTENTS 1 PRODUCT BRIEF... 3 2 REQUIREMENTS FOR TEST... 4 3 INSTALLATION... 5 3.1 Installing the AXIS 211A... 5 3.2 Set the IP address with AXIS IP Utility... 5 3.2.1 Automatic

More information

Auto Clicker Tutorial

Auto Clicker Tutorial Auto Clicker Tutorial This Document Outlines Various Features of the Auto Clicker. The Screenshot of the Software is displayed as below and other Screenshots displayed in this Software Tutorial can help

More information

Sage Timesheet Web Access How To Use Timesheet

Sage Timesheet Web Access How To Use Timesheet View and Enter Hours The majority of your projects, called tasks in Timesheet Professional, have already been set up for you. Because the names of the projects are very long, your view has been changed

More information

ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15

ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15 ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15 Apple, ipad, iphone, and ipod touch are trademarks of Apple Inc., registered in the U.S. and other countries. ios is a trademark

More information

WHAT IS IT? WHO IS IT FOR? WHY?

WHAT IS IT? WHO IS IT FOR? WHY? WHAT IS IT? Zoho Creator is an online platform that allows you to build custom applications for any business need, all by yourself. together - just the application you need. To make it work the way you

More information

NEW FEATURE OVERVIEW SPRINGCM S APPROVAL WORKFLOW TOOL (AKA ROUTING AND APPROVAL WORKFLOW)

NEW FEATURE OVERVIEW SPRINGCM S APPROVAL WORKFLOW TOOL (AKA ROUTING AND APPROVAL WORKFLOW) NEW FEATURE OVERVIEW SPRINGCM S APPROVAL WORKFLOW TOOL (AKA ROUTING AND APPROVAL WORKFLOW) SpringCM is deploying a new series of enhancements to the Approval workflow. Approval Workflows is a core platform

More information

Website Builder Overview

Website Builder Overview Website Builder Overview The Website Builder tool gives users the ability to create and manage their own website, which can be used to communicate with students and parents outside of the classroom. Users

More information

Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014)

Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014) Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014) Contents: Introduction Key Improvements VPAT Section 1194.21: Software Applications and Operating

More information

Dash 8Xe / Dash 8X Data Acquisition Recorder

Dash 8Xe / Dash 8X Data Acquisition Recorder 75 Dash 8Xe / Dash 8X Data Acquisition Recorder QUICK START GUIDE Supports Recorder System Software Version 2.0 1. INTRODUCTION 2. GETTING STARTED 3. HARDWARE OVERVIEW 4. MENUS & BUTTONS 5. USING THE DASH

More information

Scan2CRM for ACT! User Guide

Scan2CRM for ACT! User Guide Scan2CRM for ACT! User Guide APPENDIX Warranty... I Notice to user...ii Publication...III Trademarks...IV Version 9.50 - Supports ACT! by Sage for windows, ACT! 2007 (Version 9) and above. This publication

More information

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users

Getting Started. Getting Started with Time Warner Cable Business Class. Voice Manager. A Guide for Administrators and Users Getting Started Getting Started with Time Warner Cable Business Class Voice Manager A Guide for Administrators and Users Table of Contents Table of Contents... 2 How to Use This Guide... 3 Administrators...

More information

Visualization with OpenDX

Visualization with OpenDX Alexey I. Baranov Visualization with OpenDX User s Guide Springer Contents 1 Visualization with OpenDX..................................... 1 1.1 OpenDX module installation.................................

More information

D2L: An introduction to CONTENT University of Wisconsin-Parkside

D2L: An introduction to CONTENT University of Wisconsin-Parkside D2L: An introduction to CONTENT University of Wisconsin-Parkside FOR FACULTY: What is CONTENT? The Content and Course Builder tools both allow you to organize materials in D2L. Content lets you and your

More information

The Sensor Readings Gadget for Window 7. Version 1.0.0.5

The Sensor Readings Gadget for Window 7. Version 1.0.0.5 The Sensor Readings Gadget for Window 7 Version 1.0.0.5 Before you start: 1. You need the Virtual Coordinator Version 1.05.3 or above ready in the same computer or the other computer in the same network.

More information

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3]

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] Pro-curo Software Ltd USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] CONTENTS Everyday use... 3 Logging on... 4 Main Screen... 5 Adding locations... 6 Working with locations... 7 Duplicate...

More information

Getting Started with the Cadence Software

Getting Started with the Cadence Software 1 Getting Started with the Cadence Software In this chapter, you learn about the Cadence software environment and the Virtuoso layout editor as you do the following tasks: Copying the Tutorial Database

More information

Nexsure Training Manual - Admin. Chapter 11

Nexsure Training Manual - Admin. Chapter 11 Nexsure Training Manual - Admin Campaign Management In This Chapter Campaign Management Adding the Campaign Management Letter Creating the Rounding Report Campaign Wizard Launching the Campaign Goal Tracking

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS Tip for use of FAQ: Click on questions to go to answer. GETTING STARTED... 2 Which hearing devices do I need to use the app?... 2 Why do I need the ReSound Unite Phone Clip+ to use the app?... 2 I have

More information

Timeless Intranet Project

Timeless Intranet Project Office Automation Timeless Intranet Project User Guide - Office Automation (e-project Plan & Analysis Report) Prepared by Timeless Software Limited Timeless Software Ltd. 79/F The Center, 99 Queen's Road

More information

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad

How To Use Syntheticys User Management On A Pc Or Mac Or Macbook Powerbook (For Mac) On A Computer Or Mac (For Pc Or Pc) On Your Computer Or Ipa (For Ipa) On An Pc Or Ipad SYNTHESYS MANAGEMENT User Management Synthesys.Net User Management 1 SYNTHESYS.NET USER MANAGEMENT INTRODUCTION...3 STARTING SYNTHESYS USER MANAGEMENT...4 Viewing User Details... 5 Locating individual

More information

Workshop Tool in Moodle

Workshop Tool in Moodle Workshop Tool in Moodle Moodle Workshops are a great tool for students to view, grade and assess their own and other course members work as a group. There are many options that can make this educational

More information

New Energy Lab. Experiment Guide. New Energy Lab - Experiment Guide 1

New Energy Lab. Experiment Guide. New Energy Lab - Experiment Guide 1 New Energy Lab Experiment Guide New Energy Lab - Experiment Guide 1 NEW ENERGY LAB Experiment Guide Version 1.5 August 2013 Heliocentris Academia GmbH Rudower Chaussee 29 12489 Berlin Germany All rights

More information

Using and creating Crosstabs in Crystal Reports Juri Urbainczyk 27.08.2007

Using and creating Crosstabs in Crystal Reports Juri Urbainczyk 27.08.2007 Using and creating Crosstabs in Crystal Reports Juri Urbainczyk 27.08.2007 Using an creating Crosstabs in Crystal Reports... 1 What s a crosstab?... 1 Usage... 2 Working with crosstabs... 2 Creation...

More information

2N Attendance System. Configuration manual 1.0

2N Attendance System. Configuration manual 1.0 2N Attendance System Configuration manual Version 1.0 www.2n.cz The 2N TELEKOMUNIKACE a.s. is a Czech manufacturer and supplier of telecommunications equipment. The product family developed by 2N TELEKOMUNIKACE

More information

Creating and Using Master Documents

Creating and Using Master Documents Creating and Using Master Documents Title: Creating and Using Master Documents Version: 0.3 First edition: 09/04 Contents Overview...2 Acknowledgments...2 Modifications and updates... 2 Why use a master

More information

Where On Earth Will Three Different Satellites Provide Simultaneous Coverage?

Where On Earth Will Three Different Satellites Provide Simultaneous Coverage? Where On Earth Will Three Different Satellites Provide Simultaneous Coverage? In this exercise you will use STK/Coverage to model and analyze the quality and quantity of coverage provided by the Earth

More information

Jianjian Song LogicWorks 4 Tutorials (5/15/03) Page 1 of 14

Jianjian Song LogicWorks 4 Tutorials (5/15/03) Page 1 of 14 LogicWorks 4 Tutorials Jianjian Song Department of Electrical and Computer Engineering Rose-Hulman Institute of Technology March 23 Table of Contents LogicWorks 4 Installation and update...2 2 Tutorial

More information

MC Talent Management System. Goals Module Guidebook

MC Talent Management System. Goals Module Guidebook MC Talent Management System Goals Module Guidebook A. Signing On and Off of the System B. Employee Center Home Page - Left Pane - Center Pane - Right Pane C. Accessing and Creating the Goal Plan D. Navigating

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

CONCEPT-II. Overview of demo examples

CONCEPT-II. Overview of demo examples CONCEPT-II CONCEPT-II is a frequency domain method of moment (MoM) code, under development at the Institute of Electromagnetic Theory at the Technische Universität Hamburg-Harburg (www.tet.tuhh.de). Overview

More information

DWGSee Professional User Guide

DWGSee Professional User Guide DWGSee Professional User Guide DWGSee is comprehensive software for viewing, printing, marking and sharing DWG files. It is fast, powerful and easy-to-use for every expert and beginners. Starting DWGSee

More information

Sonatype CLM Server - Dashboard. Sonatype CLM Server - Dashboard

Sonatype CLM Server - Dashboard. Sonatype CLM Server - Dashboard Sonatype CLM Server - Dashboard i Sonatype CLM Server - Dashboard Sonatype CLM Server - Dashboard ii Contents 1 Introduction 1 2 Accessing the Dashboard 3 3 Viewing CLM Data in the Dashboard 4 3.1 Filters............................................

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information

PowerWorld Simulator

PowerWorld Simulator PowerWorld Simulator Quick Start Guide 2001 South First Street Champaign, Illinois 61820 +1 (217) 384.6330 support@powerworld.com http://www.powerworld.com Purpose This quick start guide is intended to

More information

Technical Manual. FAN COIL CONTROLLER COOLING or HEATING ANALOG or PWM Art. 119914 631001A

Technical Manual. FAN COIL CONTROLLER COOLING or HEATING ANALOG or PWM Art. 119914 631001A COOLING or HEATING ANALOG or PWM Art. 119914 631001A TOTAL AUTOMATION GENERAL TRADING CO. LLC SUITE NO.506, LE SOLARIUM OFFICE TOWER, SILICON OASIS, DUBAI. UAE. Tel. +971 4 392 6860, Fax. +971 4 392 6850

More information

Comparisons and Contrasts Between imovie 2 and Movie Maker 2

Comparisons and Contrasts Between imovie 2 and Movie Maker 2 Comparisons and Contrasts Between imovie 2 and Movie Maker 2 imovie 2 and Movie Maker 2 are both very simple digital video editing programs. Essentially, Movie Maker was created by Microsoft to mimic the

More information

LOCAL FLEET TRACKING. GPS Fleet Tracking Help Guide

LOCAL FLEET TRACKING. GPS Fleet Tracking Help Guide LOCAL FLEET TRACKING GPS Fleet Tracking Help Guide Table of Contents HOW TO SET UP THE CONTROL PANEL... 3 HOW TO SET UP A BOOKMARK... 5 HOW TO SET UP A GEOFENCE... 7 HOW TO DISPLAY VEHICLE HISTORY... 9

More information

The RIDZ 8x2 Audio Switcher

The RIDZ 8x2 Audio Switcher The RIDZ 8x2 Audio Switcher Engineering Manual Support Number 800-765-2930 International 712-852-2813 Table of Contents General Information for the RIDZ (8 x 2) Switcher..... 3 Input 9 on the RIDZ Switcher....6

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Building Montages in Petrel Most Petrel projects require display maps to be made for presentations; either for partners or peers. This TIPS&TRICKS provides

More information

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide March 2013 Education Solutions Development, Inc. What s Inside The information in this reference

More information

Tutorials. If you have any questions, comments, or suggestions about these lessons, don't hesitate to contact us at support@kidasa.com.

Tutorials. If you have any questions, comments, or suggestions about these lessons, don't hesitate to contact us at support@kidasa.com. Tutorials The lesson schedules for these tutorials were installed when you installed Milestones Professional 2010. They can be accessed under File Open a File Lesson Chart. If you have any questions, comments,

More information

MATLAB. Creating Graphical User Interfaces Version 6. The Language of Technical Computing. Computation. Visualization. Programming

MATLAB. Creating Graphical User Interfaces Version 6. The Language of Technical Computing. Computation. Visualization. Programming MATLAB The Language of Technical Computing Computation Visualization Programming Creating Graphical User Interfaces Version 6 How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab support@mathworks.com

More information

Welcome to the new Netop School 6.0 interface!

Welcome to the new Netop School 6.0 interface! Welcome to the new Netop School 6.0 interface! In the design of the Netop School 6.0 release, the Netop School team reevaluated the way our users interact with School and in particular with the Teacher

More information

EET 310 Programming Tools

EET 310 Programming Tools Introduction EET 310 Programming Tools LabVIEW Part 1 (LabVIEW Environment) LabVIEW (short for Laboratory Virtual Instrumentation Engineering Workbench) is a graphical programming environment from National

More information

Receptionist Console User Guide

Receptionist Console User Guide Receptionist Console User Guide Contents 1.0 Introduction and Purpose... 4 2.0 Common deployments of the Receptionist Console... 4 2.1 Fixed Receptionist Console... 4 2.2 Soft Receptionist Console... 4

More information

PowerScheduler Load Process User Guide. PowerSchool Student Information System

PowerScheduler Load Process User Guide. PowerSchool Student Information System PowerSchool Student Information System Released November 18, 2008 Document Owner: Documentation Services This edition applies to Release 5.2 of the PowerSchool software and to all subsequent releases and

More information

Avira Free Android Security (version 1.2) HowTo

Avira Free Android Security (version 1.2) HowTo Avira Free Android Security (version 1.2) HowTo Table of contents 1. Introduction... 4 2. Supported Mobile Manufacturers... 4 3. Product Overview... 5 4. Installation... 5 4.1 App installation on the device...5

More information

Drip Marketing Campaign Manual

Drip Marketing Campaign Manual Drip Marketing Campaign Manual Released May 2006 Manual for Drip Marketing Campaign: Getting Started 1. Log into www.graphicaldata.com. 2. Hold cursor over the Tools tab. 3. Click on Drip Marketing Campaign.

More information

Increasing Productivity and Collaboration with Google Docs. Charina Ong Educational Technologist charina.ong@nus.edu.sg

Increasing Productivity and Collaboration with Google Docs. Charina Ong Educational Technologist charina.ong@nus.edu.sg Increasing Productivity and Collaboration with Google Docs charina.ong@nus.edu.sg Table of Contents About the Workshop... i Workshop Objectives... i Session Prerequisites... i Google Apps... 1 Creating

More information

UNIVERSAL REMOTE CONTROL GUIDE

UNIVERSAL REMOTE CONTROL GUIDE UNIVERSAL REMOTE CONTROL GUIDE Service provided by We Keep You Connected Your new AT6400 AllTouch Infrared (IR) Universal Remote Control (remote) is a true universal remote, functioning as four remotes

More information

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart Spotfire v6 New Features TIBCO Spotfire Delta Training Jumpstart Map charts New map chart Layers control Navigation control Interaction mode control Scale Web map Creating a map chart Layers are added

More information

Microsoft Word 2010 Training

Microsoft Word 2010 Training Microsoft Word 2010 Training Microsoft Word 102 Instructor: Debbie Minnerly Course goals Learn how to work with paragraphs. Set tabs and work with tables. Learn about styles Use the spelling and grammar

More information

Downloading <Jumping PRO> from www.vola.fr-------------------------------------------- Page 2

Downloading <Jumping PRO> from www.vola.fr-------------------------------------------- Page 2 Downloading from www.vola.fr-------------------------------------------- Page 2 Installation Process on your computer -------------------------------------------- Page 5 Launching

More information

Regintech Skype video conference box

Regintech Skype video conference box Regintech Skype video conference box Video Conference can save travelling and increase employee efficiency, so it has been a must-to-have equipment for enterprises. Most available video conference systems

More information

MODEL ANALYSES AND GUIDANCE (MAG) WEB APPLICATION

MODEL ANALYSES AND GUIDANCE (MAG) WEB APPLICATION MODEL ANALYSES AND GUIDANCE (MAG) WEB APPLICATION MAG User s Manual (Documentation Version 3.10) April 2016 Prepared by: Systems Integration Branch/Software Development Team NCEP Central Operations NOAA

More information

Instructions for Creating Silly Survey Database

Instructions for Creating Silly Survey Database Instructions for Creating Silly Survey Database Create a New Database 1. Find the shortcut or the file that starts MS Access and click it to activate the program. 2. In the Create a New Database Using

More information

Qualtrics Survey Tool

Qualtrics Survey Tool Qualtrics Survey Tool This page left blank intentionally. Table of Contents Overview... 5 Uses for Qualtrics Surveys:... 5 Accessing Qualtrics... 5 My Surveys Tab... 5 Survey Controls... 5 Creating New

More information

Linkage 3.2. User s Guide

Linkage 3.2. User s Guide Linkage 3.2 User s Guide David Rector Wednesday, April 06, 2016 Table of Contents Table of Contents... 2 Installation... 3 Running the Linkage Program... 3 Simple Mechanism Tutorial... 5 Mouse Operations...

More information

Field Manager Mobile Worker User Guide for RIM BlackBerry 1

Field Manager Mobile Worker User Guide for RIM BlackBerry 1 Vodafone Field Manager Mobile Worker User Guide for RIM BlackBerry APPLICATION REQUIREMENTS Supported devices listed here o http://support.vodafonefieldmanager.com Application requires 600 KB of application

More information

End User Guide. July 22, 2015

End User Guide. July 22, 2015 End User Guide July 22, 2015 1 Contents Quick Start 3 General Features 4 Mac/Windows Sharing 15 Android/ ios Sharing 16 Device Compatibility Guide 17 Windows Aero Theme Requirement 18 2 Quick Start For

More information

1 Intel Smart Connect Technology Installation Guide:

1 Intel Smart Connect Technology Installation Guide: 1 Intel Smart Connect Technology Installation Guide: 1.1 System Requirements The following are required on a system: System BIOS supporting and enabled for Intel Smart Connect Technology Microsoft* Windows*

More information

Teacher References archived classes and resources

Teacher References archived classes and resources Archived Classes At the end of each school year, the past year s academic classes are archived, meaning they re still kept in finalsite, but are put in an inactive state and are not accessible by students.

More information

Producing Standards Based Content with ToolBook

Producing Standards Based Content with ToolBook Producing Standards Based Content with ToolBook Contents Using ToolBook to Create Standards Based Content... 3 Installing ToolBook... 3 Creating a New ToolBook Book... 3 Modifying an Existing Question...

More information

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

More information