basic usage of gnuplot hyun hee shim department of physics kangwon national university

9
Basic Usage of GnuPlot Hyun Hee Shim Dep rtment of Physics Kangwo National University

Upload: kerry-jackson

Post on 17-Jan-2016

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Basic Usage of GnuPlot

Hyun Hee Shim Department of Physics Kangwon National University

Page 2: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

What is GnuPlot?

GnuPlot is a command-driven interactive function plotting program.

• Introduction

• Operation

1. Plotting of two dimensional functions and data points in many

different style.

2. Plotting of three dimensional data points and surfaces in many

different style.

Page 3: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Starting and Quitting the GnuPlot

• Starting : To start the GunPlot under Unix , just type the command

“gnuplot”.

• Quitting : To exit GnuPlot, you can type either quit, exit or

simply q.

Basic screen of GnuPlot

Page 4: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Menubar in the Gnuplot

File Plot Expressions

On the menu bar, you can use the source wish to select.

Page 5: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Function

General Axis

Chart

3D Style

Page 6: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Plotting function

To start exploring GnuPlot, try the following command.

: The first plot command produces a plot of function.

In the first example, the range of x is not specified, so GnuPlot use its default range of (-10,10).

• Plot Function

Ex) plot cos(x)

Page 7: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Ex) plot [-pi : pi] sin(x**2),cos(exp(x))

The second plot command produces a plot of the functions sin and cos on the same graph, with x in the range (-π, π).

2xxe

In the second example, the phrase [-pi:pi] following plot tells GnuPlot to produce the plot with x in the range This tells GnuPlot to plot both functions on the same plot.       

• Plot interval function

Page 8: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Plotting the data

gnuplot> plot “map.dat” u 1:2 t “” w p 3

Represented data

Explanation : Point style using 3 color is pressed w p 3.

: File for map.dat plot using data.

: First column equal to x,second column equal to y. (u 1:2)

Page 9: Basic Usage of GnuPlot Hyun Hee Shim Department of Physics Kangwon National University

Summary

• GnuPlot is function plotting program using the command.

• GnuPlot can plot data.