Gnuplot From command line, type gnuplot G N U P L O T Linux version 3.7 patchlevel 1 last modified Fri Oct 22 18:00:00 BST 1999 Copyright(C) 1986 - 1993,

Slides:



Advertisements
Similar presentations
Create a Web Site with Publisher 2000 for Marilyn Seguins Class.
Advertisements

 Prof. Dr. M. H. Assal Introduction to Computer AS 26/10/2014.
Basic spreadsheet commands (note on powerpoint) These powerpoint slides were made using the following menu options: View -- normal Insert -- new slide.
Microsoft Excel 2013 An Overview. Environment Quick Access Toolbar Customizable toolbar for one-click shortcuts Tabs Backstage View Tools located outside.
Computer lab exercises #8. Comments on projects worth sharing: 1.Use BLINK whenever possible. It can save a lot of waiting and greatly accelerates explorations.
Getting Started with Linux Douglas Thain University of Wisconsin, Computer Sciences Condor Project October 2000.
Introducing the Command Line CMSC 121 Introduction to UNIX Much of the material in these slides was taken from Dan Hood’s CMSC 121 Lecture Notes.
Chapter 11 UNIX Printing. have to be root to setup a printer local printer is directly connected remote printer is a network printer print queue is nothing.
IS&T Scientific Visualization Tutorial – Spring 2010 Robert Putnam Plotting packages overview.
XP Using Common Features of Microsoft Office Tutorial 1.
This is a PowerPoint Presentation You can use this application to present ideas and information with text, pictures, sounds, animation, and video!
® Microsoft Office 2010 Excel Tutorial 1: Getting Started with Excel.
Basic Unix Dr Tim Cutts Team Leader Systems Support Group Infrastructure Management Team.
Remote access and file transfer Getting files on and off Bio-Linux.
8/17/2015CS346 PHP1 Module 1 Introduction to PHP.
Microsoft Office 2007 Word Integration Feature Linking an Excel Worksheet and Chart to a Word Document.
Agenda What is Computer Programming? The Programming Process
Introduction to. What is Office 365 Office 365 is the same Office you already know and use every day. Office 365 is powered by “the cloud” which is a.
MCB Lecture #3 Sept 2/14 Intro to UNIX terminal.
Computational physics PY2050 Course Details:
 View Ribbon, Document Views group, click “Print Layout”  Standard working view for print documents  Default view in Word 2010  Shows you how your.
--Caesar Cat.  Write an optical character recognition application that identifies and recognizes printed text within an image.
10/5/2015CS346 PHP1 Module 1 Introduction to PHP.
Microsoft Word 2007 Getting Started. Menus These features below contain many of the functions that were in the menu of previous versions of Word. –The.
Social Science Research Design and Statistics, 2/e Alfred P. Rovai, Jason D. Baker, and Michael K. Ponton Entering Data Manually PowerPoint Prepared by.
Microsoft Office 2008 for Mac – Illustrated Unit C: Understanding File Management.
© Paradigm Publishing Inc. 4-1 OPERATING SYSTEMS.
Introduction to UNIX Geraint Vaughan. What is UNIX? Command-line operating system (not point- and click) Designed for ‘experts’ Lots of different variants.
User Group Meeting Microsoft Read Write Review July 13, 2001.
1 Lesson 13 Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
Back up your files regularly! to yourself – can use GoogleDrive for larger files. USB flash/jump drives (32GB for ~$20) external USB hard drives,
Linux - Ubuntu LECTURE TWO. Objective: Enable students to understand the practical side of Linux operating system. Understand and implement the following.
 Desktop computer at work  Laptop computer for work  Computer at home  The Dilemma: having access to your  Documents  Events  Notes  To Do List.
Budget Distribution Upload Job New process: DUBC (Distribute University Budget to CCC) and DUER (Distribute University Estimated Revenue to CCC)
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module L Building Web Sites with FrontPage.
Microsoft Word Screen Parts
Microsoft ® Excel 2010 Core Skills Lesson 5 Viewing and Printing Workbooks Courseware #: 3243 Microsoft ® Office Excel 2010.
Introducing Dreamweaver. Dreamweaver The web development application used to create web pages Part of the Adobe creative suite.
Remote Access Usages. Remote Desktop Remote desktop technology makes it possible to view another computer's desktop on your computer. This means you can.
Quick Videos: A tutorial on creating reports. Select a report and click this to view it. Select a report and click this to change it. Select a report and.
Linux+ Guide to Linux Certification, Second Edition Chapter 4 Exploring Linux Filesystems.
File Transfer Protocol (FTP) CIS 130. File Transfer Protocol (FTP) Copy files from one internet host (server) to your account on another host –Need domain.
Getting Started with Unix Naomi Altman. Connecting to a PSU Linux Cluster click on SSH click on "quick connect" Host Name: lxcluster.tlt.psu.edu User.
Microsoft Excel 2007 Noris Bt. Ismail Faculty of Information and Communication Technology Tel : (Ext 8408) BCOMP0101.
Creating Web Pages in Word. Sharing Office Files Online Many Web pages are created using the HTML programming language. Web page editors are software.
Learn Gnuplot in an Hour Free and Open Software How to Plot Practically Anything Practically Anyway.
2nd year Computer Science & Engineer
Creating a Document MOAC Lesson 1.
Lesson 5: Viewing and Printing Workbooks
5.2 Microsoft Excel.
Formatting Worksheets
FTP Lecture supp.
Introduction to SAS on acs-linux (via Xwin32)
Creating a Brochure In Microsoft Word.
Microsoft Excel Basic Skills
Formatting Worksheets
Linux.
Files, folders, directories, URLs, and IP addresses
Formatting Worksheets
Sharing a Printer Between Windows Computers First of all Install the printer on the computer that will be sharing it.
Telnet/SSH Connecting to Hosts Internet Technology.
5.2 Microsoft Excel.
Microsoft Office Ribbon
Module 1 Introduction to PHP 11/30/2018 CS346 PHP.
Created by: Jennifer Tyndall Spring Creek High School
Views in Word 2010.
Microsoft Office Ribbon
Downloading workshop files to your computer
Using Linux Command 3 Lab#6.
Presentation transcript:

Gnuplot From command line, type gnuplot G N U P L O T Linux version 3.7 patchlevel 1 last modified Fri Oct 22 18:00:00 BST 1999 Copyright(C) , 1998, 1999 Thomas Williams, Colin Kelley and many others Type `help` to access the on-line reference manual The gnuplot FAQ is available from Send comments and requests for help to Send bugs, suggestions and mods to Terminal type set to 'unknown' gnuplot>

Data file output.dat arranged in columns… Doesn’t matter if it neatly lines up, gnuplot just looks for blank spaces…. The default is gnuplot assumes column 1 is x data and column 2 is y data… vi output.dat

Set terminal…. Where the output goes… To plot to screen with just text characters to preview… gnuplot> set terminal dumb To make a postscript file gnuplot> set terminal postscript To make a jpeg file gnuplot> set terminal jpeg

To output plot to a file… gnuplot> set output ‘picture.ps’ gnuplot> set output ‘picture.jpeg’

To plot data in a file… gnuplot> plot ‘output.dat’ To plot file in along a certain x,y range… gnuplot> plot [0:2][-2:2] ‘output.dat’ To plot different columns, for example col. 2 for x and col. 3 for y… gnuplot> plot ‘output.dat’ using 2:3 Default is points… to plot with lines… gnuplot> plot ‘output.dat’ using lines

Transferring files from/to cluster Winscp is a free windows program for ftp For OSX or linux, scp command For example, to transfer a file from cluster to physics server… scp filename To transfer a file to your OSX or linux machine from cluster… scp filename This is a way to transfer pictures to you computer for printing, or data for plotting

Another option… Transfer data to your laptop for plotting using a spreadsheet program (e.g. Microsoft Excel)