P300 Accuracy V Copyright 2012 g.tec medical engineering GmbH

Size: px
Start display at page:

Download "P300 Accuracy V Copyright 2012 g.tec medical engineering GmbH"

Transcription

1 g.tec medical engineering GmbH Sierningstrasse 14, A-4521 Schiedlberg Austria - Europe Tel.: (43) Fax: (43) office@gtec.at, TTThttp:// P300 Accuracy V Copyright 2012 g.tec medical engineering GmbH

2 Introduction This document describes how to use the P300 Accuracy function of g.bsanalyze. In a P300 experiment usually each stimulus is given several times before a classification is performed. This is done to reduce the error rate of the classifier. The number of needed repetitions for an accurate classification could vary from user to user and also from day to day. It is clear that the classification accuracy increases with a higher number of repetitions, but on the other side the spelling speed decreases. P300 Accuracy displays the accuracy of a given classifier as a function of used repetitions. Hence the output graph gives the experimenter a hint how to choose an optimal number of them for the online experiment. Be aware: The function only works correctly when the data is recorded in the same format as the Simulink model in g.p300 or the intendix software does. This means that the file must contain at first the recorded EEG channels. In the second last channel the flash ID is saved. This is the ID (number) of the actual presented flash (character). The target information is stored in the last channel. It is is set to one if the current flash is a target flash and set to zero if the flash is a nontarget flash. A raw datafile recorded within a P300 experiment Step 1: Create a Classifier Start g.bsanalyze and load the recorded P300 data file. If no dataset is available you can also open the file: C:\Program Files\gtec\gBSanalyze\testdata\P300Accuracy\P300data.mat This testdata is already prepared for use and contains therefore no timestamp. If you take a raw-data file recorded with intendix or g.p300 it contains the timestamp on the first channel. Remove it with the following procedure: (This step is not necessary if you have loaded the file above!) In the Transform menu click on Cut Trials & Channels. Now press on Select trials/chan and in the window that opens now, select the first channel to exclude (see screenshot). Click on OK! to confirm your selection. Press the Start button in the Cut Trials Channels window to finally perform the cutting. P300 Accuracy

3 Remove the timestamp from your raw data Select the first channel for removal Now, the classinfo of the dataset is needed. The classinfo describes which of the recorded trials are target-trials and which ones are nontarget-trials. To read out the classinfo copy and paste the following code into the Matlab command window (For later on you can save the code in a file). P300 Accuracy

4 global P_C; dat = P_C.Data; [NTrials,NSamples,NChannels] = size(dat); triggerdata = dat(:,:,nchannels - 1); targetdata = dat(:,:,nchannels); triggertime = find(diff(triggerdata) > 0); targettime = find(diff(targetdata) > 0); classinfo = zeros(2,length(triggertime)); for NT = 1:length(triggerTime) if isempty(intersect(triggertime(nt),targettime)) classinfo(:,nt) = [1;0]; else classinfo(:,nt) = [0;1]; end end clear dat; save('p300classinfo','classinfo'); This code saves the classinfo in the file P300classinfo.mat. The next step is to filter the data with a bandpass filter. The lower cutoff frequency is 0.1 Hz, the upper cutoff frequency is set to 30 Hz. Click in the menu on Pre-Processing and then on Filter. Check the box at Use MATLAB filtfilt function to filter data. Apply a filter on the data When you perform this calculation for the first time you need to define your filter. Click on Design filter and enter the following settings: Filter type: bandpass (BP) Filter realization: Butterworth Lower cutoff frequency (- 3 db): 0.1 [Hz] Filter order (max 500): 4 Upper cutoff frequency (- 3 db): 30 [Hz] Name: P300 Click on add to list -> to confirm your settings and click on Ok to close this window. Now you can select the P300 filter in the Select filter: window. At last click on Select trials/chan. and P300 Accuracy

5 exclude channels 9 and 10 to apply the filter only on the EEG data. When the filter is selected start filtering by pressing Start!. Set up a 4 th order butterworth filter Now apply a moving average filter onto the EEG data In the Pre-Processing menu select Moving Window Filter. Choose Moving average as filter type. Select 12 [samples] for the length of the window. Press Select trials/chan. and exclude channels 9 and 10. Click on Start! to apply the filter. P300 Accuracy

6 Apply a Moving average filter with the window length of 12 samples on the data Now the data could be triggered. Open the Trigger dialog in the Transform menu and set the following parameters: Time before trigger: 100 ms. Time after trigger: 700 ms. In the pane Specify TRIGGERS and ATTRIBUTES, select Physical channel and choose 10(CH9) from the list. As Threshold voltage choose 0.5 µv. Click on Accept overlap and add to list-> to acknowledge your selections. Click on Select channels and exclude the channels 9 and 10. Only the triggered EEG data remains now for further processing. Apply the moving window filter by pressing Start!. Specify parameters in the Trigger dialog P300 Accuracy

7 To load the previous saved classinfo, click on Load Class Information in the File menu. Press Import Wizard and select the file P300classinfo.mat that was created some steps before and Finish in the window that appears. Then enter the name NONTARGET in the Change name to field and click on the button Assign Attribute to assign the name to the class 3. Now select with the mouse the class 4 and enter TARGET into the Change name to field. Again click on Assign Attribute for changing the name of class 4 into TARGET. Click on OK to finally assign the new classinfo onto all trials. Load and apply the classinfo onto the triggered data Select the saved classinfo file Now perform a baseline correction onto every single trial. The mean value of each trial that appears 100 ms before the flashing event is subtracted from the whole trial. In the menu click on Pre- Processing and Baseline Correction. Select 1 [samples] in the Start at field and 26 [samples] (~100 ms) in the Stop at field. Press Start to apply the correction. P300 Accuracy

8 Apply the baseline correction to the data After that, the preprocessing of the data is finished and the classifier can be calculated. For that a feature matrix is defined and then the classifier is computed with this defined matrix of features. Start with selecting Classification and then Feature Matrix in the menu. Now choose the following parameters Start at: 27 [samples] Step: 12 [samples] Stop at: 205 [samples] Merge time points Select the classes NONTARGET and TARGET. Now click on Start to create the Feature Matrix. Create a feature matrix to train the classifier P300 Accuracy

9 Create and save your classifier The Linear Classifier window appears. Select Train 100 % - Test 0 % in the popup list for Training/test-sets. Check the Save results checkbox and enter the filename P300Classifier to save the file. By clicking on Start the Classifier is generated. P300 Accuracy

10 Step 2: Apply a Classifier on a P300 dataset In g.bsanalyze load your P300 dataset that you want to test, e.g. C:\Program Files\gtec\gBSanalyze\testdata\P300Accuracy\P300data.mat The file needs to contain the same number of EEG channels that were used for creating the classifier. It also must contain the triggers for the highlighted characters on the second last channel and the information which characters were selected as target characters on the last channel (see also the Introduction section). For a raw datafile the timestamp needs therefore to be removed. (Again this step is not necessary if you have loaded the file above). In the menu click on Transform and Cut Trials & Channels. Cut out the first channel by pressing on Select trials/chan. and choose the first channel to exclude. Click again on Start. Prepare you data for testing the classifier P300 Accuracy

11 Select the first channel to be cutted out Apply the same bandpass filter as for creating the classifier (see above) to the data. Now the classifier could be tested. Select in the Analyze menu P300 Accuracy. Click on Browse and select your previous created file P300Classifier. Load the classifier and apply it on the data Click on Start and the g.result2d window will open. P300 Accuracy

12 The g.result2d window shows the classification accuracy The graph shows the obtained accuracy level of the applied classifier as a function of used number of flashes for discrimination. The number of flashes is the quantity each row and each column (or each character for a SC speller) is highlighted before a classification is done. The highest number of flashes for the given dataset was at 15, hence each row and each column flashed fifteen times for each spelled character. For these 15 flashes the accuracy was at 100 %. But also when using less flashes (6 until 15), the classifier was able to reach 100 % of classification accuracy. Only with less than 6 flashes the accuracy decreases. P300 Accuracy

13 P300 Accuracy

P300 Spelling Device with g.mobilab+ and Simulink v Copyright 2012 g.tec medical engineering GmbH

P300 Spelling Device with g.mobilab+ and Simulink v Copyright 2012 g.tec medical engineering GmbH g.tec medical engineering GmbH 4521 Schiedlberg, Sierningstrasse 14, Austria Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 office@gtec.at, http://www.gtec.at P300 Spelling Device with g.mobilab+ and

More information

Performing real-time BCI experiments

Performing real-time BCI experiments Performing real-time BCI experiments g.tec medical engineering GmbH Herbersteinstr. 60 8020 Graz, Austria www.gtec.at guger@gtec.at g.usbamp is a biosignal acquisition system for EEG, ECG, EMG, EOG and

More information

biomedical engineering program BIOSIGNAL ANALYSIS GUGER TECHNOLOGIES

biomedical engineering program BIOSIGNAL ANALYSIS GUGER TECHNOLOGIES www.gtec.at R biomedical engineering program GUGER TECHNOLOGIES Multi-modal Off-line Biosignal Analysis under MATLAB Highlights intuitive Windows instruments for EEG, EOG, EMG, ECG data analysis and documentation

More information

TMSEEG Tutorial. Version 4.0. This tutorial was written by: Sravya Atluri and Matthew Frehlich. Contact:

TMSEEG Tutorial. Version 4.0. This tutorial was written by: Sravya Atluri and Matthew Frehlich. Contact: TMSEEG Tutorial Version 4.0 This tutorial was written by: Sravya Atluri and Matthew Frehlich Contact: faranak.farzan@sfu.ca For more detail, please see the Method article describing the TMSEEG Toolbox:

More information

MAT Math Processing Software

MAT Math Processing Software MAT Math Processing Software Software of the KLIPPEL R&D SYSTEM FEATURES Implement your own ideas Write flexible, powerful scripts Exploit MatLab / Scilab Hide math in a container Create tools usable for

More information

ERPEEG Tutorial. Version 1.0. This tutorial was written by: Sravya Atluri, Matthew Frehlich and Dr. Faranak Farzan.

ERPEEG Tutorial. Version 1.0. This tutorial was written by: Sravya Atluri, Matthew Frehlich and Dr. Faranak Farzan. ERPEEG Tutorial Version 1.0 This tutorial was written by: Sravya Atluri, Matthew Frehlich and Dr. Faranak Farzan. Contact: faranak.farzan@sfu.ca Temerty Centre for Therapeutic Brain Stimulation Centre

More information

Definiens. Tissue Studio 4.2. Tutorial 3: Metadata Import, Manual ROI Selection and Vessel Detection

Definiens. Tissue Studio 4.2. Tutorial 3: Metadata Import, Manual ROI Selection and Vessel Detection Definiens Tissue Studio 4.2 Tutorial 3: Metadata Import, Manual ROI Selection and Vessel Detection Tutorial 3: Metadata Import, Manual ROI Selection and Vessel Detection Imprint and Version Copyright 2015

More information

413 Reports Reports Overview Report Template Installation

413 Reports Reports Overview Report Template Installation 21 Reports 21.1 Reports Overview ThinManager has the ability to run reports to show and collect data on the ThinManager system. These reports can show the event log, configurations, uptimes, and other

More information

Microsoft Word 2010: Using Mail Merge

Microsoft Word 2010: Using Mail Merge CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Word 2010: Using Mail Merge Summer 2013, Version 1.1 Table of Contents Introduction...2 Using the Mail Merge Wizard...2

More information

Brain-Computer Interface for Virtual Reality Control

Brain-Computer Interface for Virtual Reality Control Brain-Computer Interface for Virtual Reality Control C. Guger 1, C. Holzner 1, C. Grönegress 2, G. Edlinger 1, M. Slater 2 1 g.tec medical engineering GmbH, Guger Technologies OEG, Herbersteinstrasse 60,

More information

Obvious reason for using a mail merge then is to save time in drafting a form document which needs to be sent to multiple folks.

Obvious reason for using a mail merge then is to save time in drafting a form document which needs to be sent to multiple folks. 1 2 A mail merge is made up of two components a document (which can be a letter, envelope, or label) and a data set. Putting the two together using a mail merge results in producing several letters, envelopes,

More information

Word 2010 Mail Merge. by Usman on March 05, 2010

Word 2010 Mail Merge. by Usman on March 05, 2010 Word 2010 Mail Merge by Usman on March 05, 2010 Word 2010 includes Mail Merge feature, which enables user to create documents (Letter, Emails, Fax etc) that are essentially the same but contains unique

More information

Design Flow Highlights

Design Flow Highlights Design Flow Highlights Components Selection turboconfigurator Output Documentation Special Functionality Library Control System Schematic Capture Transfer 3D Models Export and Import designs (Important

More information

Scheduling automatic backups of TSM with Windows 7

Scheduling automatic backups of TSM with Windows 7 Scheduling automatic backups of TSM with Windows 7 It is highly recommended that regular backups are conducted for TSM files; there are two methods for achieving this, the manual method or scheduling automatic

More information

COMP s1 - Getting started with the Weka Machine Learning Toolkit

COMP s1 - Getting started with the Weka Machine Learning Toolkit COMP9417 16s1 - Getting started with the Weka Machine Learning Toolkit Last revision: Thu Mar 16 2016 1 Aims This introduction is the starting point for Assignment 1, which requires the use of the Weka

More information

Mail Merge. To Use Mail Merge: Selecting Step by Step Mail Merge Wizard. Step 1:

Mail Merge. To Use Mail Merge: Selecting Step by Step Mail Merge Wizard. Step 1: Mail Merge When you are performing a Mail Merge, you will need a Word document (you can start with an existing one or create a new one), and a recipient list, which is typically an Excel workbook. Watch

More information

EPBscore user guide. Requirements:

EPBscore user guide. Requirements: EPBscore user guide Requirements: Up to Matlab 2014a. Windows-only versions (both 32- and 64-bit) were tested. Toolboxes: Control, Images, Local, Matlab, Optim, Shared, Signal, Simulink, Stats, Wavelet

More information

You can clear the sample data from the table by selecting the table and pressing Delete.

You can clear the sample data from the table by selecting the table and pressing Delete. Making Quick Tables Choose Insert tab. Then click Table. Then click Quick Tables. Select the style of table from the Quick Tables Gallery. You can clear the sample data from the table by selecting the

More information

Nikon Capture NX "How To..." Series

Nikon Capture NX How To... Series 1 of 8 5/15/2007 2:24 PM Nikon Capture NX "How To..." Series Article 22 - How to convert multiple RAW NEF images to JPEG Purpose: Using the "Batch" process, you can convert all RAW NEF images in a single

More information

USER MANUAL. > analyze. reduce. recover

USER MANUAL. > analyze. reduce. recover USER MANUAL > analyze > reduce > recover Table of Contents COPY AUDIT... 1 OVERVIEW... 1 IMPORTANT NOTES FOR PRINT AUDIT 4 CUSTOMERS... 1 COMMUNICATOR TECHNICAL NOTES... 2 COPY AUDIT SOFTWARE... 2 INSTALLING

More information

MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD

MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD When working with the Mail Merge feature, it is possible to create several types of documents, such as directories. A directory is a list of the data in the

More information

MindWare Electromyography (EMG) Analysis User Reference Guide Version Copyright 2011 by MindWare Technologies LTD. All Rights Reserved.

MindWare Electromyography (EMG) Analysis User Reference Guide Version Copyright 2011 by MindWare Technologies LTD. All Rights Reserved. MindWare Electromyography (EMG) Analysis User Reference Guide Version 3.0.12 Copyright 2011 by MindWare Technologies LTD. All Rights Reserved. MindWare EMG 3.0.12 User Guide Internet Support E-mail: sales@mindwaretech.com

More information

Transform data - Compute Variables

Transform data - Compute Variables Transform data - Compute Variables Contents TRANSFORM DATA - COMPUTE VARIABLES... 1 Recode Variables... 3 Transform data - Compute Variables With MAXQDA Stats you can perform calculations on a selected

More information

Cisco Service Control Usage Analysis and Reporting Solution Guide,

Cisco Service Control Usage Analysis and Reporting Solution Guide, CISCO SERVICE CONTROL SOLUTION GUIDE Cisco Service Control Usage Analysis and Reporting Solution Guide, Release 3.8.x 1 About this Guide 2 Usage Analysis and Reporting Solution Overview 3 Using the SCA

More information

Scope View provides a number of powerful visual tools to enhance analysis and display.

Scope View provides a number of powerful visual tools to enhance analysis and display. Scope View Scope View: LabChart 7.1 or later Scope View in LabChart is an alternative way of displaying LabChart data. Together with PowerLab, Scope View in LabChart provides and expands upon the display

More information

CaliberRM 5.1 Integration for Describe Enterprise

CaliberRM 5.1 Integration for Describe Enterprise CaliberRM 5.1 Integration for Describe Enterprise Describe Enterprise integration is now available from within the Borland CaliberRM 5.1 software suite. This document describes how to set up and configure

More information

EZCT-2000 Software. VERSION 2.x USER'S MANUAL

EZCT-2000 Software. VERSION 2.x USER'S MANUAL EZCT-2000 Software VERSION 2.x USER'S MANUAL For Use with Vanguard s EZCT-S2, EZCT-S2A, EZCT-2000, EZCT-2000A, EZCT-2000B, EZCT-2KA, EZCT-2000C Current Transformer Testers Vanguard Instruments Company,

More information

Process Eye Professional. Recall

Process Eye Professional. Recall Process Eye Professional Recall Process Eye Professional Recall User Manual SP104010.101 August 2005 As part of our continuous product improvement policy, we are always pleased to receive your comments

More information

PST for Outlook Admin Guide

PST for Outlook Admin Guide PST for Outlook 2013 Admin Guide Document Revision Date: Sept. 25, 2015 PST Admin for Outlook 2013 1 Populating Your Exchange Mailbox/Importing and Exporting.PST Files Use this guide to import data (Emails,

More information

Planning the Electrical Systems

Planning the Electrical Systems Planning the Electrical Systems Before you begin The following files are needed for this Let Me Try exercise: For Imperial: For Metric: c06_archi-elec_tut1.rvt M_ c06_archi-elec_tut1.rvt To access the

More information

Experiment 3. Getting Start with Simulink

Experiment 3. Getting Start with Simulink Experiment 3 Getting Start with Simulink Objectives : By the end of this experiment, the student should be able to: 1. Build and simulate simple system model using Simulink 2. Use Simulink test and measurement

More information

ClareVision SD Card Motion Record Settings Product Bulletin

ClareVision SD Card Motion Record Settings Product Bulletin ClareVision SD Card Motion Record Settings Product Bulletin Content Content... 1 Introduction... 1 Configuring motion detection... 1 Arming schedule for motion detection... 2 Setting the alarm actions

More information

Contents 1. General 2. Definition terms Selecting the marking device Base plates and segments 5. Editing projects

Contents 1. General 2. Definition terms Selecting the marking device Base plates and segments 5. Editing projects Manual smartmarking Contents 1. General 4 1.1. System requirements 4 1.2. Software installation 4 1.3. Support hotline 4 2. Definition of terms 5 3. Selecting the marking device 6 3.1. Type selection 6

More information

Bucknell University Digital Collections. LUNA Insight User Guide February 2006

Bucknell University Digital Collections. LUNA Insight User Guide February 2006 Bucknell University Digital Collections LUNA Insight User Guide February 2006 User Guide - Table of Contents Topic Page Number Installing Insight. 2-4 Connecting to Insight 5 Opening Collections. 6 Main

More information

Breeze - Segmentation guide

Breeze - Segmentation guide Breeze - Segmentation guide This guide will show how to use other type of segmentation than Sample model in Breeze. Note. It s recommended to first go through Powder Quantification Tutorial Table of content

More information

Introduction. Mail Merge. Word 2010 Using Mail Merge. Video: Using Mail Merge in Word To Use Mail Merge: Page 1

Introduction. Mail Merge. Word 2010 Using Mail Merge. Video: Using Mail Merge in Word To Use Mail Merge: Page 1 Word 2010 Using Mail Merge Introduction Page 1 Mail merge is a useful tool that will allow you to easily produce multiple letters, labels, envelopes, name tags and more using information stored in a list,

More information

NetBackup TM for VMware configuration

NetBackup TM for VMware configuration 289771 NetBackup TM for VMware configuration This document describes how to use NetBackup 6.5 with VMware virtual machines that run on VMware ESX servers. License requirements Features available in NetBackup

More information

Supplementary Material. Source Code for All Steps Requiring MATLAB Processing. %File name 'sddb' = SCA cohort data, 'nsrdb' = normal cohort data

Supplementary Material. Source Code for All Steps Requiring MATLAB Processing. %File name 'sddb' = SCA cohort data, 'nsrdb' = normal cohort data Supplementary Material. Source Code for All Steps Requiring MATLAB Processing %Data Preprocessing: Isolating Samples & Converting Channels %File name 'sddb' = SCA cohort data, 'nsrdb' = normal cohort data

More information

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

Accessing Flamingo 1.1 Libraries Located on a Removable Disk

Accessing Flamingo 1.1 Libraries Located on a Removable Disk Accessing Flamingo 1.1 Libraries Located on a Removable Disk Flamingo 1.1 users frequently ask how to keep their libraries on a removable disk. Often students are looking for a way around loosing the library

More information

Windows XP Software Installation Instructions GCC Elite Series Printers

Windows XP Software Installation Instructions GCC Elite Series Printers TM Windows XP Software Installation Instructions GCC Elite Series Printers This document is intended to provide instructions for obtaining and installing the Windows XP driver software for GCC s Elite

More information

Tutorial BOLD Module

Tutorial BOLD Module m a k i n g f u n c t i o n a l M R I e a s y n o r d i c B r a i n E x Tutorial BOLD Module Please note that this tutorial is for the latest released nordicbrainex. If you are using an older version please

More information

This document covers the most frequently used procedures in ClearCase. It contains the following sections:

This document covers the most frequently used procedures in ClearCase. It contains the following sections: ClearCase is a software configuration management system. It is also the tool Concur uses for documentation management and version control. All historical versions are located in a Versioned Object database

More information

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel.

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel. Candy is Dandy Grading Rubric You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those bags. You

More information

N2KExtractor. NMEA 2000 Data Extractor Software. User s Manual

N2KExtractor. NMEA 2000 Data Extractor Software. User s Manual N2KExtractor NMEA 2000 Data Extractor Software User s Manual Revision 1.0.0 Copyright 2012 Maretron, LLP All Rights Reserved Maretron, LLP 9014 N. 23 rd Ave #10 Phoenix, AZ 85021-7850 http://www.maretron.com

More information

WORD 2016 INTERMEDIATE Page 1. Word 2016 Intermediate. North American Edition SAMPLE

WORD 2016 INTERMEDIATE Page 1. Word 2016 Intermediate. North American Edition SAMPLE Word 2016 Intermediate WORD 2016 INTERMEDIATE Page 1 Word 2016 Intermediate North American Edition 2015 Cheltenham Group Pty. Ltd. - www.cheltenhamcourseware.com WORD 2016 INTERMEDIATE Page 2 2015 Cheltenham

More information

Importing GNSS Data SPECTRA PRECISION SURVEY OFFICE TUTORIAL

Importing GNSS Data SPECTRA PRECISION SURVEY OFFICE TUTORIAL Importing GNSS Data SPECTRA PRECISION SURVEY OFFICE TUTORIAL Corporate office: Spectra Precision 10355 Westmoor Drive Suite #100 Westminster, CO 80021 USA Phone: +1-720-587-4700 Toll free (in USA): +1-888-477-7516

More information

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now!

Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! Module 4: Creating Content Lesson 5: Creating Visualizations Try Now! In this Try Now! exercise, you will be creating a visualization in your Sales domain, based on the data you uploaded from your Microsoft

More information

Word 2010 Skills Checklist

Word 2010 Skills Checklist S1 S2 Sharing and Maintaining Documents 1.1 Apply different views to a document Select zoom options Split windows Arrange windows Arrange document views Switch between windows Open a document in a new

More information

milestone XProtect Smart Wall Administrator s Manual

milestone XProtect Smart Wall Administrator s Manual milestone XProtect Smart Wall Administrator s Manual Target Audience for this Document This document is aimed at surveillance system administrators installing and/or managing XProtect Smart Wall on an

More information

Open Microsoft Word: click the Start button, click Programs> Microsoft Office> Microsoft Office Word 2007.

Open Microsoft Word: click the Start button, click Programs> Microsoft Office> Microsoft Office Word 2007. Microsoft Word 2007 Mail Merge Letter The information below is devoted to using Mail Merge to create a letter in Microsoft Word. Please note this is an advanced Word function, you should be comfortable

More information

Introduction to Electronics Workbench

Introduction to Electronics Workbench Introduction to Electronics Workbench Electronics Workbench (EWB) is a design tool that provides you with all the components and instruments to create board-level designs on your PC. The user interface

More information

Release 9.1 now allows you to simplify the look and feel of commonly used forms.

Release 9.1 now allows you to simplify the look and feel of commonly used forms. Release 9.1 now allows you to simplify the look and feel of commonly used forms. 1 After completing this topic, you will be able to: Demonstrate how to edit forms and assign UI templates to users Describe

More information

Perceptive Intelligent Capture Project Migration Tool. User Guide. Version: 2.0.x

Perceptive Intelligent Capture Project Migration Tool. User Guide. Version: 2.0.x Perceptive Intelligent Capture Project Migration Tool User Guide Version: 2.0.x Written by: Product Knowledge, R&D Date: May 2015 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Copyright 2012 Pulse Systems, Inc. Page 1 of 29

Copyright 2012 Pulse Systems, Inc. Page 1 of 29 Use the CCD Control to receive and distribute a patient's "Continuity of Care Document" which contains the recorded medical history from a particular facility. Click anywhere to continue Copyright 2012

More information

Managing the System Event Log

Managing the System Event Log Managing the System Event Log This chapter includes the following sections: System Event Log, page 1 Viewing the System Event Log for an Individual Server, page 2 Viewing the System Event Log for the Servers

More information

The following sections provide information on using Cisco VLT.

The following sections provide information on using Cisco VLT. The following sections provide information on using Cisco VLT. Displaying a List of Trace Log Messages, page 1 Filtering the Trace Log Message List, page 4 Finding Information in Trace Log Message Text,

More information

ExtremeZ-IP Print Quick Start Guide

ExtremeZ-IP Print Quick Start Guide ExtremeZ-IP Print Quick Start Guide This Quick Start Guide walks you through the three steps needed to start using IP Print. Install the ExtremeZ-IP Print Server software Create ExtremeZ-IP Print Queues

More information

MAIL MERGE LABELS USE THE MAIL MERGE WIZARD

MAIL MERGE LABELS USE THE MAIL MERGE WIZARD MAIL MERGE LABELS USE THE MAIL MERGE WIZARD When working with the Mail Merge feature, it is possible to create several types of documents, such as labels. In this document, information on how to set up

More information

ST. JOHN FISHER COLLEGE

ST. JOHN FISHER COLLEGE Word Mail Merge Table of Contents The Mailings Tab... 1 Main Document... 2 E-Mail Messages... 3 Create and print envelopes... 5 Create and print labels... 8 Connecting to a Data Source... 10 Filter list

More information

1 Connecting the indicator and launching Data Link

1 Connecting the indicator and launching Data Link SETUP GUIDE LIC MINDA software - Importing data from a 5000 Series Weigh Scale Indicator These instructions describe how to transfer data from a 5000 Series Weigh Scale Indicator into LIC* MINDA* software.

More information

Manually Configuring IIS

Manually Configuring IIS Manually Configuring IIS This application note describes how to manually configure Microsoft's Internet Information Server (IIS) and the ProHelp EPM Web Reporting option. This configuration is typically

More information

Tutorial 2: Analysis of DIA/SWATH data in Skyline

Tutorial 2: Analysis of DIA/SWATH data in Skyline Tutorial 2: Analysis of DIA/SWATH data in Skyline In this tutorial we will learn how to use Skyline to perform targeted post-acquisition analysis for peptide and inferred protein detection and quantification.

More information

How to Remove Duplicate Rows in Excel

How to Remove Duplicate Rows in Excel How to Remove Duplicate Rows in Excel http://www.howtogeek.com/198052/how-to-remove-duplicate-rows-in-excel/ When you are working with spreadsheets in Microsoft Excel and accidentally copy rows, or if

More information

3. Click the Change Case button. 4. On the menu, click the desired case option. Managing Document Properties

3. Click the Change Case button. 4. On the menu, click the desired case option. Managing Document Properties PROCEDURES LESSON 20: CHANGING CASE AND MANAGING DOCUMENT PROPERTIES Using Uppercase Mode 1 Press the Caps Lock key 2 Type the desired text in all caps Showing Caps Lock on the Status Bar 1 Right-click

More information

Start Mail Merge Step by Step Mail Merge Wizard messages

Start Mail Merge Step by Step Mail Merge Wizard  messages Mail Merge One of the most important pieces of a Mail Merge is your list of recipients along with their corresponding email addresses. When you are collecting email addresses, make sure that they are valid

More information

CPM-200 User Guide For Lighthouse for MAX

CPM-200 User Guide For Lighthouse for MAX CPM-200 User Guide For Lighthouse for MAX Contents Page Number Opening the software 2 Altering the page size & Orientation 3-4 Inserting Text 5 Editing Text 6 Inserting Graphics 7-8 Changing the Colour

More information

Agilent MassHunter LC/SQ ChemStation Integration Software

Agilent MassHunter LC/SQ ChemStation Integration Software Agilent MassHunter LC/SQ ChemStation Integration Software Quick Start Guide What is the Agilent MassHunter LC/SQ ChemStation Integration Software? 2 Installation 4 Getting Started 5 LC/SQ Chemstation To

More information

Toolkit Activity Installation and Registration

Toolkit Activity Installation and Registration Toolkit Activity Installation and Registration Installing the Toolkit activity on the Workflow Server Install the Qfiche Toolkit workflow activity by running the appropriate SETUP.EXE and stepping through

More information

Duplicate Detection addon for Dynamics CRM by Cowia

Duplicate Detection addon for Dynamics CRM by Cowia Duplicate Detection addon for Dynamics CRM by Cowia Table of Contents Supported versions... 2 Trial... 2 License Activation... 2 YouTube Video... 3 Setup with example... 3 1. First step is to disable the

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

1 MAPLE EXCEL MACRO TECH NOTE JOEL HYING

1 MAPLE EXCEL MACRO TECH NOTE JOEL HYING 1 MAPLE EXCEL MACRO TECH NOTE Purpose : To explain how to view historical trend data in Microsoft Excel recorded from the Maple Silver Series touchscreen. The Maple touchscreen records the historical data

More information

Quick Reference Guide SharePoint Quick Reference Guide

Quick Reference Guide SharePoint Quick Reference Guide Quick Reference Guide 1 P age Table of Contents What is SharePoint?... 3 1. Home Page Layout... 4 2. Uploading Documents to a Library... 6 3. To Open a Document... 7 4. To Delete a Document... 7 5. Adding

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

SL-6397 DECUS GAMING MOUSE

SL-6397 DECUS GAMING MOUSE Profile selection and configuration, lighting effects You can switch between 5 different profiles at the top of the left-hand column. A default profile is configured when the driver is installed for the

More information

Lab - Task Scheduler in Windows 8

Lab - Task Scheduler in Windows 8 Lab - Task Scheduler in Windows 8 Introduction In this lab, you will schedule a task using the Windows 8 Task Scheduler utility. You will then make changes to your task and test your task by running it.

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

Neural Circuit Tracer

Neural Circuit Tracer 2014 Neural Circuit Tracer Software for automated tracing of neurites from light microscopy stacks of images User Guide Version 4.0 Contents 1. Introduction... 2 2. System requirements and installation...

More information

Setting up Dynamics SL Data Migration Extension for D365 for Financials. For Microsoft Dynamics SL 2015

Setting up Dynamics SL Data Migration Extension for D365 for Financials. For Microsoft Dynamics SL 2015 Setting up Dynamics SL Data Migration Extension for D365 for Financials For Microsoft Dynamics SL 2015 Revision Date: 7/13/2017 Contents Introduction... 2 How to install the Dynamics SL Data Migration

More information

Working with CVS in Eclipse

Working with CVS in Eclipse Working with CVS in Eclipse Hoang Huu Hanh Institute of Software Technology and Interactive Systems Vienna University of Technology Favoritenstrasse 9-11/188 1040 Vienna, Austria hhhanh@ifs.tuwien.ac.at

More information

MICROSOFT WORD. MS. Office includes the following application:

MICROSOFT WORD. MS. Office includes the following application: MICROSOFT WORD MS. Office consists of group of application developed overtime by MS work together, both in terms of accomplishing things is a similar way and in terms of providing easy of data. MS. Office

More information

Viewing Capture ATP Status

Viewing Capture ATP Status Capture ATP Viewing Capture ATP Status Configuring Capture ATP Viewing Capture ATP Status Capture ATP > Status About the Chart About the Log Table Uploading a File for Analysis Viewing Threat Reports Capture

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

User Guide. Datgel. Survey Tools gint Add-In

User Guide. Datgel. Survey Tools gint Add-In User Guide Survey Tools gint Add-In DSVT-UG-001-1.04 March 2010 Disclaimer The information in this publication is subject to change without notice and does not represent a commitment on the part of Pty

More information

PsyAcoustX Manual (v1)

PsyAcoustX Manual (v1) PsyAcoustX Manual (v1) - 2015 Skyler Jennings, PhD Contents Getting started: Experiment Menu and Calibration Opening the GUI:... 2 Experiment Menu... 2 The SystemInfo.mat file... 3 Calibration:... 4 Calibration

More information

PSM-Mobile User s Manual

PSM-Mobile User s Manual 7/23/09 PSM-Mobile User s Manual Contents PSM-Mobile User s Manual...1 Introduction...1 Getting Started (Installing / Starting PSM-Mobile)...2 Free 30 Day Trial...3 PSM-Mobile Main Screen...3 PSM-Mobile

More information

ArcTrak Plus. Operation / Installation Manual. Micro Arc Data Monitor Statistical Analysis Program. Computer Weld Technology, Inc.

ArcTrak Plus. Operation / Installation Manual. Micro Arc Data Monitor Statistical Analysis Program. Computer Weld Technology, Inc. Computer Weld Technology, Inc. 10702 Old Bammel N Houston Rd. Houston, TX 77086 Phone: (713) 462-2118 Fax: (713) 462-2503 Email: cwt@cweldtech.com ArcTrak Plus Micro Arc Data Monitor Statistical Analysis

More information

Asta Easyplan. Getting Started Guide Version 7. Asta Easyplan: Simple planning tool for small projects. astapowerproject.

Asta Easyplan. Getting Started Guide Version 7. Asta Easyplan: Simple planning tool for small projects. astapowerproject. Asta Easyplan Getting Started Guide Version 7 astapowerproject.com/asta-easyplan Asta Easyplan GETTING STARTED WITH ASTA EASYPLAN This booklet is designed to help you start using Asta Easyplan as quickly

More information

Performing a resequencing assembly

Performing a resequencing assembly BioNumerics Tutorial: Performing a resequencing assembly 1 Aim In this tutorial, we will discuss the different options to obtain statistics about the sequence read set data and assess the quality, and

More information

This application note begins to explain the tools available for writing scripts for AcqKnowledge version 4.1.

This application note begins to explain the tools available for writing scripts for AcqKnowledge version 4.1. Application Note 253 Getting Started in BIOPAC Basic Scripting Updated 6.10.10 BIOPAC Basic Scripting is a scripting language development option for executing, authoring, and debugging BIOPAC Basic scripts.

More information

AKELA Vector Network Analyzer (VNA) Quick Start Guide

AKELA Vector Network Analyzer (VNA) Quick Start Guide AKELA Vector Network Analyzer (VNA) Quick Start Guide Copyright AKELA, Inc. 2012, all rights reserved http:\\akelainc.com LabVIEW and LabWindows are registered trademarks of National Instruments Incorporated

More information

Synoptics Limited reserves the right to make changes without notice both to this publication and to the product that it describes.

Synoptics Limited reserves the right to make changes without notice both to this publication and to the product that it describes. GeneTools Getting Started Although all possible care has been taken in the preparation of this publication, Synoptics Limited accepts no liability for any inaccuracies that may be found. Synoptics Limited

More information

PrimoPDF User Guide, Version 5.0

PrimoPDF User Guide, Version 5.0 Table of Contents Getting Started... 3 Installing PrimoPDF... 3 Reference Links... 4 Uninstallation... 5 Creating PDF Documents... 5 PrimoPDF Document Settings... 6 PDF Creation Profiles... 6 Document

More information

RioScan ScanSeek. V2.0 User s Manual

RioScan ScanSeek. V2.0 User s Manual RioScan ScanSeek V2.0 User s Manual 2 Copyright 1999-2001 RioScan, Inc. All Rights Reserved The RioScan logo and ScanSeek are trademarks of RioScan, Inc. Microsoft, Windows, Windows 95, Windows 98, Windows

More information

ComTrader 2.7 Color Theme User Manual

ComTrader 2.7 Color Theme User Manual Color Theme User Manual User Manual Table of Contents 1 Introduction... 1 1.1 About this Document... 1 2 Resource file... 1 2.1 General expressions... 2 2.1.1 Base... 3 2.1.2 Secondary-window... 3 2.1.3

More information

Brain Explorer for Connectomic Analysis (BECA) Software Manual

Brain Explorer for Connectomic Analysis (BECA) Software Manual Brain Explorer for Connectomic Analysis (BECA) Software Manual Table of Contents 1. Launch the application... 2 2. Tractography Visualization... 3 3. Gray Matter Visualization... 5 4. Fiber classification

More information

Configuring Optional and Advanced Tasks for External Content Integration

Configuring Optional and Advanced Tasks for External Content Integration Configuring Optional and Advanced Tasks for External Content Integration First Published: August 2, 2012 Revised: March 8, 2013 This module describes some of the optional and advanced tasks that you can

More information

Compact Contact Center Wallboard Manager

Compact Contact Center Wallboard Manager Compact Contact Center 40DHB0002USBF Issue 5 (21 st September 2004) Table Of Contents... 2 Introduction... 2 Plasma PC Wallboard... 2 Wallboard Server... 3 Introduction... 3 Starting the Wallboard Server...

More information

Windows NT Server Printer Driver Upgrade Instructions

Windows NT Server Printer Driver Upgrade Instructions Windows NT Server Printer Driver Upgrade Instructions The steps detailed below describe the most reliable method to upgrade printer driver versions after v1.6.0227a on a Windows NT 4.0 Server that is shared

More information

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears.

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears. Word 2010 Text Basics Introduction Page 1 It is important to know how to perform basic tasks with text when working in a word processing application. In this lesson you will learn the basics of working

More information