User guide

plotScatter
Createsa2-dimensionalscatterplot.
plotSurface
Createsa3-dimensionalsurfaceplot.
plotTS
Createsagraphoftimeseriesdata.
plotXY
Createsa2-dimensionallineplot.
6.2 Basic Plotting
ThesimplestwaytoplotdatainGAUSSistousedefaultvaluesfortheplotsettings,
suchaslinecolor,linesize,legendtext,etc.Thesesettingsmaybechangedbytheuser
fromthemainmenubar:Tools-> Preferences-> Graphics.Tocreateaplotusing
defaultplotsettings,simplycalloneoftheplottingfunctionswithyourdataasinputs:
//Create a sequential column vector from -5 to 5 with
//101 steps
x = seqa(-5, 0.1, 101);
//Set y to the normal probability density function
y = pdfn(x);
//Plot the data
plotXY(x, y);
6-2
GAUSSUser Guide