Course Information Do not rely on color to distinguish curves (due to black-white printout). Use different line styles to distinguish curves (solid, dashed,

Slides:



Advertisements
Similar presentations
Plotting Selim Aksoy Bilkent University Department of Computer Engineering
Advertisements

Lecture (4) Plotting & Programming (1) Eng. Osama Talaat 1.
2D Plots 1 ENGR 1181 MATLAB 12.
Introduction to Graphing Using MATLAB. Line Graphs  Useful for graphing functions  Useful for displaying data trends over time  Useful for showing.
MA/CS375 Fall MA/CS 375 Fall 2002 Lecture 4.
© red ©
Introduction to MATLAB Northeastern University: College of Computer and Information Science Co-op Preparation University (CPU) 10/27/2003.
Introduction to MATLAB Northeastern University: College of Computer and Information Science Co-op Preparation University (CPU) 10/27/2003.
Key For All Figures CYAN NODE = DBF ORANGE = PRO BROWN = Gov’t YELLOW = Pharma GRAY = VC WHITE = Other Triangle = New Entrant Circle = Incumbent Node size.
MATLAB - Lecture 22A Two Dimensional Plots / Chapter 5 Topics Covered:
Vectors and Plotting Selim Aksoy Bilkent University Department of Computer Engineering
Introduction to Matlab 332:202 Discrete Mathematics Spring 2007.
Lecture 9 Plotting in 2-D Plotting in 2-D, Plotting Multiple Curves, Plotting with Figures, Plot Settings, Scaling, Legends © 2007 Daniel Valentine. All.
An introduction to Plotting in MATLAB Rikard Johansson Department of Biomedical Engineering (IMT) Linköping University
EPSII 59:006 Spring Outline Managing Your Session File Usage  Saving Workspace  Loading Data Files  Creating M-files More on Matrices Review.
PLOTS AND FIGURES DAVID COOPER SUMMER Plots One of the primary uses for MATLAB is to be able to create publication quality figures from you data.
ENG College of Engineering Engineering Education Innovation Center 1 2D Plots 1 in MATLAB Topics Covered: 1.Plotting basic 2-D plots The plot()
ELG 3120 Signal and System Analysis 1 Introduction to MATLAB TAs Wei Zhang Ozgur Ekici (Section A)(Section B) ELG 3120 Lab Tutorial 1.
Graphing Guidelines  Often the goal of an experiment is to find the relationship between two variables.  As one variable changes, so does the other.
COMP 116: Introduction to Scientific Programming Lecture 5: Plotting, Scripts and publishing.
S5-1 ADM740, Section 5, June 2007 Copyright  2007 MSC.Software Corporation SECTION 5 PLOT CONFIGURATION FILES.
Is this a square or a pentagon? It is a square.
Lecture 2 - Matlab Introduction CVEN 302 June 5, 2002.
Barbara/Pratik/Yu. Outline Matlab desktop M-files Variables Arrays Plots.
ENG 1181 College of Engineering Engineering Education Innovation Center MATLAB – 2D Plots 1 Go to the class drive: ---> MatLab - Graphing ---> Seed Files.
Plot (x-values, y-values) >> x = linspace (-3, 3, 20); >> x = linspace (-3, 3, 20); >> y = 2*x – 1; >> y = 2*x – 1; >> plot (x, y) >> plot (x, y)
UW CSE 190p Section 7/26, Summer 2012 Dun-Yu Hsiao.
Introduction to Scientific Programming in MATLAB Michael McLennan Software Architect HUBzero™ Platform for Scientific Collaboration.
EGR 106 Lecture 6 2-D Plotting Graphical presentation has become the standard method to show technical information. Engineers use plots to analyze, visualize,
EGR 115 Introduction to Computing for Engineers 2D Plotting – Part I Wednesday 17 Sept 2014 EGR 115 Introduction to Computing for Engineers.
= 5 = 2 = 4 = 3 How could I make 13 from these shapes? How could I make 19 from these shapes? STARTER.
Introduction to Engineering MATLAB – 9 Plotting - 2 Agenda Formatting plots.
Introduction to MATLAB ENGR 1181 MATLAB 1. MATLAB Built-in Math Functions  Pre-defined in MATLAB ready for use exp(x) – exponential (e x ) log(x) – natural.
NET 222: COMMUNICATIONS AND NETWORKS FUNDAMENTALS ( NET 222: COMMUNICATIONS AND NETWORKS FUNDAMENTALS (PRACTICAL PART) Lab 2 : potting to Matlab Networks.
Crank arm = orange plate with cavity crank axis = x at center of black circle cavity 6 = hole in crank arm cam 7 = blue plate inside cavity in crank arm.
 There are 3 primary colors of light RED, GREEN, & BLUE  When these colors of light are mixed… White Light is produced  This process is called color.
PRELIMINARII Un semnal discret este definit pe mulţimea numerelor întregi Z → R Mulţimea Z are semnificaţia de timp (discret) Not ă m cu x[n] valoarea.
EGR 106 – Week 5 – 2-D Plots Question : Why do engineers use plots? Answer : To analyze, visualize, and present data. Matlab has many useful plotting options.
How to use MATLAB (using M-files) Double click this icon To start Matlab 6.5.
Prof. N. P. Jadhav Presented by. Overview of MATLAB environment MATLAB is an interactive, matrix-based system for scientific and engineering numeric computation.
Creating a Plot The plot function can take one or more inputs; e.g. plot (x, y) or plot (y) Note that in the two-argument version, the vectors x and.
Plotting Chapter 5.
Introduction to MATLAB
Lecture 25: Exploring data
Figure Legend: From: Binocular combination of luminance profiles
Matrices and Arrays.
Seeing in colour Stare at the coloured dot in the middle of the next picture for a minute. Then describe what you see when you look at the next slide.
Net 222: Communications and networks fundamentals (Practical Part)
Net 222: Communications and networks fundamentals (Practical Part)
Net 222: Communications and networks fundamentals (Practical Part)
Shapes and Colors BEGINNING ESL LESSON
MATLAB How to use (using M-files) Double click this icon
MATLAB How to use (using M-files) Double click this icon
Fractions 1/2 1/8 1/3 6/8 3/4.

MATLAB How to use (using M-files)
Two ways to discuss color 1) Addition 2) Subtraction
Introduction to MATLAB Plotting LAB 3
Introduction to MATLAB
Yang-Ming University, Taipei, Taiwan
Introduction to MATLAB
Plotting Signals in MATLAB
What Color is it?.
Observed (symbols) and model predicted (lines) dopamine time courses in rats following D-amphetamine administration. Observed (symbols) and model predicted.
numbers letters colors shapes animals 1pt 1 pt 1 pt 1pt 1 pt 2 pt 2 pt
Introduction to Matlab
probability with cards
Created By Dick Heckathorn 25 June 2K+3
Shapes.
Volume 98, Issue 3, Pages (February 2010)
Presentation transcript:

CDA6530: How to Plot Experimental Figures in Academic Papers Cliff Zou Fall 2012

Course Information Do not rely on color to distinguish curves (due to black-white printout). Use different line styles to distinguish curves (solid, dashed, dotted, dash-doted). Use mark on some curves for further distinguishing. In Matlab, plot(X, Y, ‘b-.o’); use different mark for different curves. In Matlab, use: plot(X,Y, ‘r+:’); b blue . point - solid g green o circle : dotted r red x x-mark -. dashdot c cyan + plus -- dashed m magenta * star (none) no line y yellow s square k black d diamond w white v triangle (down) ^ triangle (up) < triangle (left) > triangle (right) p pentagram h hexagram

Example Problems

The curves should not be covered by, e.g., legend. Make sure your “useful” curves occupy most of the figure’s drawing area. You need to manually change X or Y axis range to do that. Make sure your figure’s font (label, legend, axis values) are large enough to be readable. Make sure curves are thick enough to be readable. The curves should not be covered by, e.g., legend. In Matlab, you can adjust all these directly on matlab figures Better save all .fig files for later editing

Example Problems

Example Problems