Special Topics II: Graphical User Interfaces (GUIs)

Size: px
Start display at page:

Download "Special Topics II: Graphical User Interfaces (GUIs)"

Transcription

1 Special Topics II: Graphical User Interfaces (GUIs) December 8, 2011 Structures Structures (structs, for short) are a way of managing and storing data in most programming languages, including MATLAB. Assuming we want the variable called instructor to store some sort of data about a person. We could do: >> instructor.firstname = Ikenna ; >> instructor.lastname = Odinaka ; >> instructor.age = 24; >> instructor.gender = Male ; >> instructor.ssn = ; Notice that a dot. is used to set the fields of the structure. Similarly, if we wanted to know the firstname or any other field in the instructor structure, we will use the dot. to get it. That is, doing >> instructor.firstname will return Ikenna. A structure called handles will be used quite often when you create graphical user interfaces in MATLAB. GUI Introduction According to MATLAB s help documentation, A graphical user interface (GUI) is a graphical display in one or more windows containing controls, called components, that enable a user to perform interactive tasks. In other words, the user gets to click on buttons or drop-down (pop-up) menus, sliders and so on, to accomplish a goal. In MATLAB, there are two ways to create a fully functional GUI; using GUIDE or programmatically. Simply put, the first method is easy, since MATLAB does most of the dirty work for you. For the second method, you get to control everything about the GUI, from laying it out to programming it to run as desired, all within a script m-file. As you may have already guessed, we will be sticking to the first approach. 1

2 2 GUIDE MATLAB s Graphical User Interface Development Environment (GUIDE) offers an easy way to lay out the graphical components such as axes, menus, toolbars, push buttons, radio buttons, list boxes, sliders and so on. Using the layout editor, we will be able to drag n drop components onto a window and resize the window or the components to our heart s content. Layout To get started, type guide into the command window, after the prompt (>>), hit Enter. Select the Blank GUI(Default) under GUIDE templates, and hit the OK button. Figure 1: Starting up GUIDE A blank layout area(window) with grid lines should appear. It will be titled untitled.fig, if this is your first session in GUIDE; we will change this before running the GUI.

3 3 Figure 2: A blank layout window (without component names) On the left side of the window is the component palette, from which we can drag any one of the components onto the layout area. Notice that the names of the components are not visible on the palette. We can change that by going to File >> Preferences... Under GUIDE Preferences, check the box that reads Show names in component palette. Figure 3: A blank layout window (with component names) Click on a push button, and drop it on the layout area. Once its on the layout area, left-click it, to select it.

4 4 Figure 4: Push button on layout area Notice the label at the bottom-left corner of the window that reads Tag: pushbutton1. This is a property name and value pair of the push button. We can change the value of Tag from pushbutton1 to whatever we desire within the Property inspector. To get the properties for any component, right-click the component, then select Property Inspector. Figure 5: Getting to the Property Inspector via the component s context menu After clicking on Property Inspector, the list of property names and values should appear. Scroll down the list to the property name Tag. To the right of Tag, change the value

5 5 to whatever variablename yousee fit. Notethat thetagsmust beunique for each component on the layout area, for your GUI to function properly. I changed the push button s tag from pushbutton1 to demo button. After typing the new tag, if you click away from it, it takes effect. Figure 6: Setting the Tag property in the Property Inspector Noticehowthelabelatthebottom-leftcornerofthewindownowreadsTag: demo button. We can also change the text that is shown on the push button by changing the value of its String property via the property inspector. We can also resize the components by clicking and dragging the black square points that surround them. Figure 7: Setting the String property in the Property Inspector

6 6 After finishing the layout of the GUI, go ahead and save it. An m-file is automatically generated, and its name matches the name of the fig-file (layout file) we just saved. The next step is to program the GUI so that each component does what it is supposed to. Programming Associated with each component of the GUI are functions that we call callbacks. Each callback function is called when a particular kind of user input is received by the component. All the functions involved in making the GUI run are saved in an m-file whose name is identical to the fig-file. MATLAB GUIDE automatically helps you create the skeleton of the basic (most commonly used) callback functions for each component on the layout area. The callback functions are automatically named using the tag of the components on the layout area. To see the callback functions (callbacks) for a given component, in the layout area, right-click the component, then select M-file Editor. Figure 8: Opening the m-file at the callback functions for a given component To see a list of all the callback functions (without the body of the functions), use the Show functions button on the toolbar above the m-file editor. You can click on a function on the list to be directly taken to it. Figure 9: The Show functions button.

7 7 One particular callback function of interest to us is the Callback function (with C capitalized). Itisthefunctionthatiscalledwhenweclickonapushbuttonoranyothercomponent. Most callback functions (including the Callback function) have three input arguments hobject, eventdata, and handles; eventdata will not be used. hobject is a handle to the component while handles is a structure that holds the handle to every component on the GUI including the figure (GUI) itself. Figure 10: The m-file showing the callback functions including the Callback function. To get the handle to a particular component on the GUI, we use the component s tag as the field for the structure. For instance, for a handle to our push button, whose tag is demo button, we will use handles.demo button. We can also use this handles structure to our advantage; we can save any data that we want to be available to other components by simply adding it as a field of the structure. For instance, if we wanted to make a random vector of 10 entries available to every component, we could do: >> handles.rvec = rand(10, 1); After making changes to the handles structure, it is crucial to save the changes (update the handles structure), otherwise it won t be passed along to other components. To do this, we use the function guidata as follows: >> guidata(hobject, handles); Note that this is usually done at the end of the particular callback function. Figure 11: Using the handles structure to our advantage. Project: Picture Converter In this lab, we will create a GUI that imports a jpeg photo from any folder/directory on the computer, and converts the RGB image into a grayscale image. To begin, we will create a layout of our project. After much contemplating and scratch work, we finally have a clear picture of what the GUI should look like; A pair of axes where

8 8 the images will be drawn, a push button for importing a jpeg picture, and a push button to convert the image to grayscale. Figure 12: A possible layout of the picture converter After laying out the GUI, our next task is to program the GUI to respond to button clicks made by the user. The Callback function of the push buttons will come in handy here. Some Useful Functions: uigetfile mean imread image imshow colormap Further Help For further help with GUIs in MATLAB, from the main MATLAB window (or the editor), click on the menu bar s help tab, then click on Product Help. Below the search bar to the left, click on Content >> Matlab >> User s Guide >> Creating Graphical User Interfaces. You can read up on how to create a GUI both programmatically and by using GUIDE.

9 9 Demo Visit the following MATLAB website to learn more about creating a simple graphical user interface: simple gui

There are two ways to launch Graphical User Interface (GUI). You can either

There are two ways to launch Graphical User Interface (GUI). You can either How to get started? There are two ways to launch Graphical User Interface (GUI). You can either 1. Click on the Guide icon 2. Type guide at the prompt Just follow the instruction below: To start GUI we

More information

Graphical User Interface. GUI in MATLAB. Eng. Banan Ahmad Allaqta

Graphical User Interface. GUI in MATLAB. Eng. Banan Ahmad Allaqta raphical ser nterface in MATLAB Eng. Banan Ahmad Allaqta What is? A graphical user interface () is a graphical display in one or more windows containing controls, called components, that enable a user

More information

Building a Graphical User Interface

Building a Graphical User Interface 148 CHAPTER 9 Building a Graphical User Interface Building a Graphical User Interface CHAPTER 9 9.1 Getting started with GUIDE 9.2 Starting an action with a GUI element 9.3 Communicating with GUI elements

More information

MATLAB. Creating Graphical User Interfaces Version 7. The Language of Technical Computing

MATLAB. Creating Graphical User Interfaces Version 7. The Language of Technical Computing MATLAB The Language of Technical Computing Note This revision of Creating Graphical User Interfaces, issued May 2006, adds three new chapters that provide more information for creating GUIs programmatically.

More information

INTRODUCTION TO MATLAB INTERACTIVE GRAPHICS EXERCISES

INTRODUCTION TO MATLAB INTERACTIVE GRAPHICS EXERCISES INTRODUCTION TO MATLAB INTERACTIVE GRAPHICS EXERCISES Eric Peasley, Department of Engineering Science, University of Oxford version 3.0, 2017 MATLAB Interactive Graphics Exercises In these exercises you

More information

BUILDING A MATLAB GUI. Education Transfer Plan Seyyed Khandani, Ph.D. IISME 2014

BUILDING A MATLAB GUI. Education Transfer Plan Seyyed Khandani, Ph.D. IISME 2014 BUILDING A MATLAB GUI Education Transfer Plan Seyyed Khandani, Ph.D. IISME 2014 Graphical User Interface (GUI) A GUI is useful for presenting your final software. It makes adjusting parameters and visualizing

More information

Still More About Matlab GUI s (v. 1.3) Popup Menus. Popup Menu Exercise. Still More GUI Info - GE /29/2012. Copyright C. S. Tritt, Ph.D.

Still More About Matlab GUI s (v. 1.3) Popup Menus. Popup Menu Exercise. Still More GUI Info - GE /29/2012. Copyright C. S. Tritt, Ph.D. Still More About Matlab GUI s (v. 1.3) Dr. C. S. Tritt with slides from Dr. J. LaMack January 24, 2012 Popup Menus User selects one from a mutually exclusive list of options The String property is typically

More information

Beginning PowerPoint: 2010 A Presentation Software

Beginning PowerPoint: 2010 A Presentation Software Beginning PowerPoint: 2010 A Presentation Software Objective 1: Review Screen Layout PowerPoint 2010 offers a similar user interface as 2007. The top portion of the window has a new structure for PowerPoint

More information

SBT 645 Introduction to Scientific Computing in Sports Science #5

SBT 645 Introduction to Scientific Computing in Sports Science #5 SBT 645 Introduction to Scientific Computing in Sports Science #5 SERDAR ARITAN serdar.aritan@hacettepe.edu.tr Biyomekanik Araştırma Grubu www.biomech.hacettepe.edu.tr Spor Bilimleri Fakültesi www.sbt.hacettepe.edu.tr

More information

This is a demonstration of how you can create a Microsoft Power Point presentation:

This is a demonstration of how you can create a Microsoft Power Point presentation: This is a demonstration of how you can create a Microsoft Power Point presentation: Go to your start menu and choose Microsoft Office documents and choose the Power Point blank presentation document. Then

More information

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES Eric Peasley, Department of Engineering Science, University of Oxford version 4.6, 2018 MATLAB Application Exercises In these exercises you will

More information

Badges & Barcodes in Certain

Badges & Barcodes in Certain Badges & Barcodes in Certain This document is a guide to configuring and generating badges in Certain. It describes the Badges V2 module, as updated in Certain 5.9 (with on-demand badges). Contents Introduction...

More information

Comic Life. Creating Photo Comics. Classroom Course Manual

Comic Life. Creating Photo Comics. Classroom Course Manual Comic Life Creating Photo Comics Classroom Course Manual Written, designed, and produced by: DoIT Software Training for Students Last Updated 1/14/2017 About Software Training for Students Software Training

More information

GUI Building for Test & Measurement Applications

GUI Building for Test & Measurement Applications by: Ahmed Abdalla, The MathWorks GUI Building for Test & Measurement Applications This article demonstrates how you can utilize the below-listed products to create a custom test and measurement GUI application

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows CHAPTER 1 Getting to Know AutoCAD Opening a new drawing Getting familiar with the AutoCAD and AutoCAD LT Graphics windows Modifying the display Displaying and arranging toolbars COPYRIGHTED MATERIAL 2

More information

USER GUIDE MADCAP CAPTURE 7. Getting Started

USER GUIDE MADCAP CAPTURE 7. Getting Started USER GUIDE MADCAP CAPTURE 7 Getting Started Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

PowerPoint for Art History Presentations

PowerPoint for Art History Presentations PowerPoint for Art History Presentations For PC computers running Microsoft Office 2007+ Adapted by The University of California, Berkeley from the Institute of Fine Arts document by Elizabeth S. Funk

More information

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics FACULTY AND STAFF COMPUTER TRAINING @ FOOTHILL-DE ANZA Office 2001 Graphics Microsoft Clip Art Introduction Office 2001 wants to be the application that does everything, including Windows! When it comes

More information

PowerPoint 2002 Manual

PowerPoint 2002 Manual PowerPoint 2002 Manual Internet and Technology Training Services Miami-Dade County Public Schools Contents How to Design Your Presentation...3 PowerPoint Templates...6 Formatting Your Slide Show...7 Creating

More information

Display Systems International Software Demo Instructions

Display Systems International Software Demo Instructions Display Systems International Software Demo Instructions This demo guide has been re-written to better reflect the common features that people learning to use the DSI software are concerned with. This

More information

Using StarImpress. A brief introduction

Using StarImpress. A brief introduction Using StarImpress A brief introduction What is Impress? Impress is the open source (free) alternative to PowerPoint You can Impress for the same things you would do in PowerPoint Create a lesson with handouts

More information

Dreamweaver: Web Forms

Dreamweaver: Web Forms Dreamweaver: Web Forms Introduction Web forms allow your users to type information into form fields on a web page and send it to you. Dreamweaver makes it easy to create them. This workshop is a follow-up

More information

Name: Date: Multimedia Graphics and Web Publishing Mr. Dietzler. Flash Topics TWEENING AND MOTION GUIDES

Name: Date: Multimedia Graphics and Web Publishing Mr. Dietzler. Flash Topics TWEENING AND MOTION GUIDES Name: Date: Multimedia Graphics and Web Publishing Mr. Dietzler Flash Topics TWEENING AND MOTION GUIDES TWEENING: Motion Tweening: The most basic type of tweening is Motion Tweening in which you specify

More information

Photoshop Goodies Phil Russell

Photoshop Goodies Phil Russell Photoshop Goodies Phil Russell There are three Screen Modes you can select from in Photoshop. They appear next to the bottom in Toolbar (Fig. 1.). Click the F key to move from Standard Screen Mode to Full

More information

SolidWorks Intro Part 1b

SolidWorks Intro Part 1b SolidWorks Intro Part 1b Dave Touretzky and Susan Finger 1. Create a new part We ll create a CAD model of the 2 ½ D key fob below to make on the laser cutter. Select File New Templates IPSpart If the SolidWorks

More information

Changing Button Images in Microsoft Office

Changing Button Images in Microsoft Office Changing Button Images in Microsoft Office Introduction This document deals with creating and modifying the button images used on Microsoft Office toolbars. Rarely is there a need to modify a toolbar button

More information

Power Point 2000 Level 1

Power Point 2000 Level 1 Introduction Opening PowerPoint, Using the AutoContent Wizard, Window Elements, Working in the Outline and Slide Window Panes, Understanding Different Views, and Saving the Presentation. Contents Introduction

More information

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev. 06.29.09 Overview: This reference manual will cover two separate applications that work together to produce a

More information

2. Sign the document with either your finger or a stylus. 3. Save and the signed PDF document to the desired party.

2. Sign the document with either your finger or a stylus. 3. Save and  the signed PDF document to the desired party. Landtech Data Corporation is pleased to present the Landtech esign mobile app for the ipad and iphone. Landtech esign enables you to sign any PDF document on your ipad or iphone using electronic signature

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge and Kyle Monahan 4/24/2017 First think about your audience and purpose, then design your poster! Here are instructions for setting up your

More information

Publisher I-Introduction-2013 Version

Publisher I-Introduction-2013 Version Publisher I-Introduction-2013 Version I. About Publisher A. What is it? Publisher is a desktop publishing program that assists you in designing and producing professional documents that combine text, graphics,

More information

Creating custom reports is for advanced users only. It is the sole responsibility of the user to debug any custom reports.

Creating custom reports is for advanced users only. It is the sole responsibility of the user to debug any custom reports. SI5 User and Administration Guide 527 Report Designer Pro users have the ability to create custom reports using the Report Designer. To open the report designer interface, go to Tools > Report Designer

More information

Microsoft Access 2002 for Windows

Microsoft Access 2002 for Windows Microsoft Access 2002 for Windows Handout: 2 Academic Computing Support Information Technology Services Tennessee Technological University February 2004 1. Opening the File In the PC labs, from the Start

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

Academic Word Processing with Word 2003

Academic Word Processing with Word 2003 Academic Word Processing with Word 2003 Doc 5.133 Ver 1 John Matthews May 2005 Central Computing Services Prerequisites This document assumes that you are familiar with the use of a computer keyboard and

More information

Form into function. Getting prepared. Tutorial. Paul Jasper

Form into function. Getting prepared. Tutorial. Paul Jasper Tutorial Paul Jasper TABLE OF CONTENTS 1 Getting prepared 2 Adding a button to the form design 2 Making the button add tasks 3 Sending the XML data 4 Tidying up 5 Next time In the first episode, I showed

More information

Trident Trust PowerPoint User Guide

Trident Trust PowerPoint User Guide Trident Trust PowerPoint User Guide Intelligent Documents October 2017 1 Overview The PowerPoint template is designed to make it quick and easy to create consistent and professional presentations conforming

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge, 11/26/2018 First think about your audience and purpose, then design your poster! Here are instructions for setting up your poster using

More information

Microsoft. An Introduction

Microsoft. An Introduction Microsoft Amarillo College Revision Date: February 7, 2011 Table of Contents SLIDE MASTER... 2 ACCESSING THE SLIDE MASTER... 2 BACKGROUNDS... 2 FONT COLOR OF SLIDE TITLES... 3 FONT COLOR OF BULLET LEVELS...

More information

MS Publisher County of Henrico Public Libraries

MS Publisher County of Henrico Public Libraries MS Publisher 2013 I. About Publisher A. What is it? Publisher is a desktop publishing program that assists you in designing and producing professional documents that combine text, graphics, illustrations,

More information

Generations Monograms + Monogramming Masterpieces By Bernadette Griffith Generations Software

Generations Monograms + Monogramming Masterpieces By Bernadette Griffith Generations Software Creating monograms in Generations Monograms+ is a snap. Just select one of the build in monogram templates, a True Type Font lettering style and one of the decorative borders and frames included in the

More information

This guide will show you how to create a basic multi-media PowerPoint presentation containing text, graphics, charts, and audio/video elements.

This guide will show you how to create a basic multi-media PowerPoint presentation containing text, graphics, charts, and audio/video elements. This guide will show you how to create a basic multi-media PowerPoint presentation containing text, graphics, charts, and audio/video elements. Before starting the steps outlined in this guide, it is recommended

More information

Netscape Composer: Working with Tables

Netscape Composer: Working with Tables Why tables? Netscape Composer: Working with Tables Tables on the Web can be divided into two categories: data display and page layout. Although the method for making both kinds of tables is the same, it

More information

MATLAB Project: Getting Started with MATLAB

MATLAB Project: Getting Started with MATLAB Name Purpose: To learn to create matrices and use various MATLAB commands for reference later MATLAB functions used: [ ] : ; + - * ^, size, help, format, eye, zeros, ones, diag, rand, round, cos, sin,

More information

Function Grapher Demystified Step 1

Function Grapher Demystified Step 1 Function Grapher Demystified Step 1 MathDL Flash Forum Learning Center Functions Grapher Demystified by Barbara Kaskosz and Doug Ensley In our MathDL Flash Forum article "Flash Tools for Developers: Function

More information

Getting Started with DADiSP

Getting Started with DADiSP Section 1: Welcome to DADiSP Getting Started with DADiSP This guide is designed to introduce you to the DADiSP environment. It gives you the opportunity to build and manipulate your own sample Worksheets

More information

Basic Concepts 1. For this workshop, select Template

Basic Concepts 1. For this workshop, select Template Basic Concepts 1 When you create a new presentation, you re prompted to choose between: Autocontent wizard Prompts you through a series of questions about the context and content of your presentation not

More information

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

The Language of Technical Computing. Computation. Visualization. Programming. Creating Graphical User Interfaces Version 1 MATLAB The Language of Technical Computing Computation Visualization Programming Creating Graphical User Interfaces Version 1 How to Contact The MathWorks: 508-647-7000 Phone 508-647-7001 Fax The MathWorks,

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Contents. Xweb User Manual

Contents. Xweb User Manual USER MANUAL Contents 1. Website/Pages/Sections/Items/Elements...2 2. Click & Edit, Mix & Match (Drag & Drop)...3 3. Adding a Section...4 4. Managing Sections...5 5. Adding a Page...8 6. Managing Pages

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

NVU Web Authoring System

NVU Web Authoring System NVU Web Authoring System http://www.nvu.com/index.php Table of Contents Using Nvu as Your Web Page Authoring System: Getting Started Opening a page, saving, and previewing your work...3 Formatting the

More information

INTViewer Tutorial Cube Tutorial

INTViewer Tutorial Cube Tutorial INTViewer Tutorial Cube Tutorial This tutorial shows how to use INTViewer to display a seismic cube stored in a Seismic file. Windows created will include INLINE, XLINE, Time Slice and an arbitrary traverse,

More information

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7

Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Microsoft Windows 7 - Illustrated Unit A: Introducing Windows 7 Objectives Start Windows and view the desktop Use pointing devices Use the Start button Use the taskbar Work with windows 2 Objectives Use

More information

MATLAB Project: Getting Started with MATLAB

MATLAB Project: Getting Started with MATLAB Name Purpose: To learn to create matrices and use various MATLAB commands for reference later MATLAB built-in functions used: [ ] : ; + - * ^, size, help, format, eye, zeros, ones, diag, rand, round, cos,

More information

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists 3,500 108,000 1.7 M Open access books available International authors and editors Downloads Our

More information

Google Classroom User Manual

Google Classroom User Manual Google Classroom User Manual Table of Contents Table of Contents 1 Google Classroom on a Computer 3 1: Making an Account 3 2: Change Your Profile Photo 5 3: Customize your Notifications 7 4: Join a Class

More information

Document Editor Basics

Document Editor Basics Document Editor Basics When you use the Document Editor option, either from ZP Toolbox or from the Output option drop-down box, you will be taken to the Report Designer Screen. While in this window, you

More information

Basic Concepts 1. Starting Powerpoint 2000 (Windows) For the Basics workshop, select Template. For this workshop, select Artsy

Basic Concepts 1. Starting Powerpoint 2000 (Windows) For the Basics workshop, select Template. For this workshop, select Artsy 1 Starting Powerpoint 2000 (Windows) When you create a new presentation, you re prompted to choose between: Autocontent wizard Prompts you through a series of questions about the context and content of

More information

Thermacam Reporter 2000 Professional Template Building Tutorial

Thermacam Reporter 2000 Professional Template Building Tutorial Introduction: This tutorial will guide you step-by-step through the process of creating a new template using Thermacam Reporter 2000 Professional. The template consists of an item page with an IR image

More information

FrontPage. Directions & Reference

FrontPage. Directions & Reference FrontPage Directions & Reference August 2006 Table of Contents Page No. Open, Create, Save WebPages Open Webpage... 1 Create and Save a New Page... 1-2 Change the Background Color of Your Web Page...

More information

Session 7 MS Word. Graphics. Inserting Clipart, and Graphics Modify graphics Position graphics

Session 7 MS Word. Graphics. Inserting Clipart, and Graphics Modify graphics Position graphics Session 7 MS Word Graphics Inserting Clipart, and Graphics Modify graphics Position graphics Table of Contents Session 7 Working with Graphics... 1 The Toolbar... 1 Drawing Toolbar... 1 Picture Toolbar...

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Designer Reference 1

Designer Reference 1 Designer Reference 1 Table of Contents USE OF THE DESIGNER...4 KEYBOARD SHORTCUTS...5 Shortcuts...5 Keyboard Hints...5 MENUS...7 File Menu...7 Edit Menu...8 Favorites Menu...9 Document Menu...10 Item Menu...12

More information

SolidWorks 2½D Parts

SolidWorks 2½D Parts SolidWorks 2½D Parts IDeATe Laser Micro Part 1b Dave Touretzky and Susan Finger 1. Create a new part In this lab, you ll create a CAD model of the 2 ½ D key fob below to make on the laser cutter. Select

More information

Logging Into Your Site

Logging Into Your Site This training document is meant as a step-by-step guide to creating and delivering a UW-Madison site in the current UW-Madison theme. In this training class, you will learn how to log in to access your

More information

Splicing Instructions

Splicing Instructions Splicing Instructions When we create our experiments, we need to be able to play individual words as experiment stimuli. In order to get these individual words, we have a native speaker of whatever language

More information

1 All of this was put in tables to make it easier to control the layout and format.

1 All of this was put in tables to make it easier to control the layout and format. Page 1 of 6 1 All of this was put in tables to make it easier to control the layout and format. Click on StatDisk icon on the Desktop or Click Start, Programs, and StatDisk to Open the StatDisk program.

More information

How to use the Assets panel

How to use the Assets panel Adobe Dreamweaver Guide How to use the Assets panel You can use the Assets panel in Dreamweaver to manage assets in the current site (Figure 1). The Assets panel displays assets for the site associated

More information

StudioPrompter Tutorials. Prepare before you start the Tutorials. Opening and importing text files. Using the Control Bar. Using Dual Monitors

StudioPrompter Tutorials. Prepare before you start the Tutorials. Opening and importing text files. Using the Control Bar. Using Dual Monitors StudioPrompter Tutorials Prepare before you start the Tutorials Opening and importing text files Using the Control Bar Using Dual Monitors Using Speed Controls Using Alternate Files Using Text Markers

More information

New Features Overview for My Memories Suite 9

New Features Overview for My Memories Suite 9 New Features Overview for My Memories Suite 9 New Project Types You can now choose from several new project options such as Posters, Metal Prints, Canvas Prints, Social Media templates, and Photo Gifts

More information

IT82: Multimedia Macromedia Director Practical 1

IT82: Multimedia Macromedia Director Practical 1 IT82: Multimedia Macromedia Director Practical 1 Over the course of these labs, you will be introduced Macromedia s Director multimedia authoring tool. This is the de facto standard for time-based multimedia

More information

How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and

How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and How to use the open-access scanners 1. Basic instructions (pg 2) 2. How to scan a document and perform OCR (pg 3 7) 3. How to scan a document and save it directly into Microsoft Word (pg 8 9) 4. How to

More information

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation

Using MS Publisher. Launch MS Publisher: Start > All Programs > Microsoft Office > Publisher. Setting up Document Size and Orientation Designing and Creating your GIS Poster Revised by Carolyn Talmadge 1/20/2015 First think about your audience and purpose then design your poster! Here are instructions for setting up your poster using

More information

2016 July. Quick Start Manual V2.0 BadgeMaker Base V2.0.25

2016 July. Quick Start Manual V2.0 BadgeMaker Base V2.0.25 2016 July Quick Start Manual V2.0 BadgeMaker Base V2.0.25 Create Dynamic Fields 22 Add a background 23 Add shapes 24 Add placeholder for passport photo and signature 24 Add barcode 25 Add Text 26 Add

More information

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0

SciGraphica. Tutorial Manual - Tutorials 1and 2 Version 0.8.0 SciGraphica Tutorial Manual - Tutorials 1and 2 Version 0.8.0 Copyright (c) 2001 the SciGraphica documentation group Permission is granted to copy, distribute and/or modify this document under the terms

More information

FLORIDA INTERNATIONAL UNIVERSITY EEL-6681 FUZZY SYSTEMS

FLORIDA INTERNATIONAL UNIVERSITY EEL-6681 FUZZY SYSTEMS FLORIDA INTERNATIONAL UNIVERSITY DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING EEL-6681 FUZZY SYSTEMS A Practical Guide to Model Fuzzy Inference Systems using MATLAB and Simulink By Pablo Gomez Miami,

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

Getting Started With the CCPilot VI and QuiC

Getting Started With the CCPilot VI and QuiC Page 1 of 24 Getting Started With the CCPilot VI and QuiC Page 2 of 24 Table of Contents Purpose... 3 What You Will Need... 4 Install the QuiC Tool... 6 Install the QuiC Runtime... 7 Basics of the QuiC

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

Public-Private Dialogue

Public-Private Dialogue Public-Private Dialogue www.publicprivatedialogue.org The PPD Reform Tracking Tool A tutorial to use a tool designed to manage, track and report on Working Groups issues 1- INTRODUCTION... 3 2 - BROWSING

More information

How to Format Tables in the American University Thesis and Dissertation Template

How to Format Tables in the American University Thesis and Dissertation Template Mac Word 2008 Formatting Tables Page 1 of 9 Click to Jump to a Topic How to Format Tables in the American University Thesis and Dissertation Template Pasting Tables into the Template (3 Steps) Creating

More information

Spreadsheet Concepts: Creating Charts in Microsoft Excel

Spreadsheet Concepts: Creating Charts in Microsoft Excel Spreadsheet Concepts: Creating Charts in Microsoft Excel lab 6 Objectives: Upon successful completion of Lab 6, you will be able to Create a simple chart on a separate chart sheet and embed it in the worksheet

More information

How to Use SVG Cut Files

How to Use SVG Cut Files How to Use SVG Cut Files STEP 1: DOWNLOAD SVG ZIP FILE FROM WEBSITE Scroll to the bottom of the project post to find the files for the project. Click and download the SVG file. You will be downloading

More information

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files.

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files. Parts of this functionality will only be available in INTERAXO Pro. Introduction The viewer provides users with the capability to load a wide variety of document types online using a web browser. Documents

More information

A Student s Guide to Taking Notes Using Microsoft Word 2013

A Student s Guide to Taking Notes Using Microsoft Word 2013 A Student s Guide to Taking Notes Using Microsoft Word 2013 Erin Moreira UMass Amherst 2015 A Student s Guide to Taking Notes Using Microsoft Word 2013 Acknowledgements I would like to thank Professor

More information

WinTruss Tutorial By Matt Sutton

WinTruss Tutorial By Matt Sutton WinTruss Tutorial By Matt Sutton WinTruss is a powerful, intuitive, and flexible truss analyzer. This tutorial is written to introduce you to many of the features available on WinTruss. The easiest way

More information

Computer Essentials Session 1 Lesson Plan

Computer Essentials Session 1 Lesson Plan Note: Completing the Mouse Tutorial and Mousercise exercise which are available on the Class Resources webpage constitutes the first part of this lesson. ABOUT PROGRAMS AND OPERATING SYSTEMS Any time a

More information

Exercise 1.1 A First NetLogo Session Turtle commands and properties

Exercise 1.1 A First NetLogo Session Turtle commands and properties Exercise 1.1 A First NetLogo Session NetLogo is an interpreted language meaning you can type commands directly into a command line and see the results. In order to introduce NetLogo we will first type

More information

Designing Reports. eivf Designing Reports Note Types 1

Designing Reports. eivf Designing Reports Note Types 1 Designing Reports Designing Reports...1 Note Types...3 Notes...3 Shorthands...3 Quick Note...3 Click N Build...3 Reports (Data Plates )...3 Most commonly use of the Note Types...4 Notes...5 To create a

More information

How to use: TMA Live

How to use: TMA Live How to use: TMA Live Page 1 of 17 Contents Welcome to TMA Live... 3 Getting to TMA Live... 3 From Your Desktop PC... 3 From Your Mobile Device... 3 Logging in to TMA Live... 4 TMA Live Home Screen... 5

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

ClipArt and Image Files

ClipArt and Image Files ClipArt and Image Files Chapter 4 Adding pictures and graphics to our document not only breaks the monotony of text it can help convey the message quickly. Objectives In this section you will learn how

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Create a new document: Save your document regularly! The Big Picture: File>New

Create a new document: Save your document regularly! The Big Picture: File>New Create a new document: File>New 1. On the menu bar, click File, then New. (Note: From now on, this will be indicated using the following notation style: File>New.) 2. Type in the dimensions for the publication

More information

You will need to add the path to all the related files into the MATLAB path. To do so, click Set Path in the Home tab.

You will need to add the path to all the related files into the MATLAB path. To do so, click Set Path in the Home tab. How To: Panoramic Imaging By Shubham Gupta This manual will teach you how to use the Panoramic Imaging software. First, you should ensure your folder structure follows the below image. You should have

More information

Real Estate Flyer. Projects 1

Real Estate Flyer. Projects 1 Projects 1 PagePlus provides a wide selection of design templates, which you can use as starting points for your own publications. In this project, we ll start with a real estate flyer template and customize

More information