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 - metrics - download
Index: T p

⟦9d4308a39⟧ TextFile

    Length: 549 (0x225)
    Types: TextFile
    Names: »plthlp.hlp«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦e0e3e8967⟧ »./gnuplot.tar.Z« 
        └─⟦01af444b1⟧ 
            └─⟦this⟧ »gnuplot/help/plot/plthlp.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