DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ . T

⟦0cf941848⟧ TextFile

    Length: 548 (0x224)
    Types: TextFile
    Names: ».HLP«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/gnuplot/help/gnuplot/plot/.HLP« 

TextFile

'plot' is the primary command of the program.  It plots functions and
data in many, many ways.  The full syntax of this command is:

  plot {ranges}   <function> {style} {, <function> {style}...}

Where <function> is either a mathematical expression or the name of a
data file enclosed in quotes.  User-defined functions and variables
may also be defined here. 

Curly braces {,} denote optional items.

A 'plot' command can be as simple as

 plot sin(x)

or as complex as (!)

 plot [t=1:10] [-pi:pi*2] tan(t),"data.1" with lines,t**2 with points