Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plot(3x) [ultrix man page]

plot(3x)																  plot(3x)

Name
       openpl, erase, label, line, circle, arc, move, cont, point, linemod, space, closepl, box, color, dot - graphics interface

Syntax
       openpl()

       erase()

       label(s)
       char s[];

       line(x1, y1, x2, y2)

       circle(x, y, r)

       arc(x, y, x0, y0, x1, y1)

       move(x, y)

       cont(x, y)

       point(x, y)

       linemod(s)
       char s[];

       space(x0, y0, x1, y1)

       closepl()

       box(x0, x1, y0, y1)

       color(c)

       dot()

Description
       These  subroutines generate graphic output in a device-independent manner.  See for a description of their effect.  The subroutine precedes
       the other subroutines as it opens the device for writing.  The subroutine flushes the output. The and routines are used by  the	lvp16  and
       hp7475a plotters only.

       String arguments to and are null-terminated and do not contain newlines.

       Many of these functions have additional options for different output devices.  They are accessed by the options as follows:

       -lplot	     device-independent graphics stream on standard output for filters

       -lplotaed     AED 512 color graphics terminal

       -lplotbg      BBN bitgraph graphics terminal

       -lplotdumb    dumb terminals without cursor addressing or line printers

       -lplotgigi    gigi graphics terminal

       -lplotgrn     grn files

       -lplot2648    HP 2648 graphics terminal

       -lplot7221    HP 7221 graphics terminal

       -lplotimagen  Imagen laser printer (default 240 DPI resolution)

       -l300	     GSI 300 terminal

       -l300s	     GSI 300S terminal

       -l450	     DASI 450 terminal

       -l4013	     Tektronix 4013 terminal

       -l4014	     Tektronix 4014 terminal

       -llvp16	     DEC LVP16 and HP7475A plotters

See Also
       graph(1g), plot(1g), plot(5)

																	  plot(3x)

Check Out this Related Man Page

plot(3x)																  plot(3x)

Name
       openpl, erase, label, line, circle, arc, move, cont, point, linemod, space, closepl, box, color, dot - graphics interface

Syntax
       openpl()

       erase()

       label(s)
       char s[];

       line(x1, y1, x2, y2)

       circle(x, y, r)

       arc(x, y, x0, y0, x1, y1)

       move(x, y)

       cont(x, y)

       point(x, y)

       linemod(s)
       char s[];

       space(x0, y0, x1, y1)

       closepl()

       box(x0, x1, y0, y1)

       color(c)

       dot()

Description
       These  subroutines generate graphic output in a device-independent manner.  See for a description of their effect.  The subroutine precedes
       the other subroutines as it opens the device for writing.  The subroutine flushes the output. The and routines are used by  the	lvp16  and
       hp7475a plotters only.

       String arguments to and are null-terminated and do not contain newlines.

       Many of these functions have additional options for different output devices.  They are accessed by the options as follows:

       -lplot	     device-independent graphics stream on standard output for filters

       -lplotaed     AED 512 color graphics terminal

       -lplotbg      BBN bitgraph graphics terminal

       -lplotdumb    dumb terminals without cursor addressing or line printers

       -lplotgigi    gigi graphics terminal

       -lplotgrn     grn files

       -lplot2648    HP 2648 graphics terminal

       -lplot7221    HP 7221 graphics terminal

       -lplotimagen  Imagen laser printer (default 240 DPI resolution)

       -l300	     GSI 300 terminal

       -l300s	     GSI 300S terminal

       -l450	     DASI 450 terminal

       -l4013	     Tektronix 4013 terminal

       -l4014	     Tektronix 4014 terminal

       -llvp16	     DEC LVP16 and HP7475A plotters

See Also
       graph(1g), plot(1g), plot(5)

																	  plot(3x)
Man Page

11 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

connecting to unix through hyper terminal - as a dumb terminal

I just changed from windows NT to XP and I am no longer able to connect to my unix system. I used to use hyper terminal -- which acts as dumb terminal to my main frame unix system. I think one of the options used to be "direct to comX". This option isn't listed now. I use a serial port and the... (2 Replies)
Discussion started by: michelle
2 Replies

2. UNIX for Dummies Questions & Answers

Regarding UNIX dumb terminals

Respected members of the Forum, This is my first post. I have a few questions regarding dumb terminals and VT100 dumb terminal emulators. I have to connect a few dumb terminals to an IRIX server There are two options 1) Use Dumb terminals directly 2) Use a Terminal emulator like... (1 Reply)
Discussion started by: Ummeed11
1 Replies

3. UNIX for Dummies Questions & Answers

Networking a SCO Unix box with a windows lan

Hi there! We have a SCO UNIX box that uses a bunch of dumb terminals. We also have a workgroup of 5 stations Is there a way that we can network the UNIX box to the workgroup for dumb terminal.. A novice would think you could TCP the UNIX machine through a hub and use hypertermal as a dumb... (6 Replies)
Discussion started by: huilai
6 Replies

4. UNIX for Advanced & Expert Users

How to "Print Screen" from a dumb terminal on AIX?

Hello Everyone, How can I send a screen print of a dumb terminal to a printer? AIX v4.3.3 Thanks in advance. Suhas (3 Replies)
Discussion started by: stembe
3 Replies

5. UNIX for Dummies Questions & Answers

Dont have the root passwd for Solaris 8

Hello chiefs :) I have a SUN Enterprise 250, running Solaris 8.5 - I have managed to be able to connect a dumb terminal to the box via a standard straight-through rj45 cable, to my ibm laptop. OK so Putty can connect to the box via ssh - nice! But I dont have the password for root - or any... (1 Reply)
Discussion started by: congo
1 Replies

6. AIX

AIX supported graphics cards

I'm using an IBM RS6000 running AIX 5.3. Currently I can only attach a dumb terminal to it to log in at the console or use terminal emulation software to connect to it remotely via my pc. What I would like to do is install a graphics card, so that I can make use of the kvm mounted in the rack. So... (2 Replies)
Discussion started by: HNelson
2 Replies

7. Solaris

draw graphics to stdout in solaris

Hi all.. I am trying to draw a line on the monitor on sun platform machine. I tried a simple program. #include<stdio.h> #include<plot.h> int main() { openpl(); linemod("dotted"); line(1000,1000,2000,2000); closepl(); return 0; } It doesn't produce the desired result. If one... (0 Replies)
Discussion started by: shivamasam
0 Replies

8. UNIX for Dummies Questions & Answers

Help required on printing the line if third field is not a empty space

Hi Experts, I want to print the lines whose third field in non-empty/blank space. i.e. INPUT FILE/B] dcdccghjrry0yd cont dcdccttrk820529 cont rdekedfsSCr dcdccttrdky2d0y cont rdekedfsSC2 ... (3 Replies)
Discussion started by: krao
3 Replies

9. HP-UX

Adding "dumb terminal"

I have a small network of dumb terminals (9 HP 715 RISC machines OS Ver A.09.05) one as an application server, the other 8 diskless workstations. One workstation failed and I need to get a spare up on the network. With a bootable disk in the spare machine I found the MAC address of the spare... (1 Reply)
Discussion started by: gnappi
1 Replies

10. What is on Your Mind?

Anyone remember this cute unix ad?

It showed a cleaning woman (probably in the evening, after most of the other employees had left work) happily typing commands on a dot matrix terminal (could've been a DEC LA120, IIRC) just because "unix is so easy to use, even a cleaning woman can use it!". If you know where to find a scanned... (2 Replies)
Discussion started by: mathiasbage
2 Replies

11. UNIX for Advanced & Expert Users

Performance impact of terminal output

Hello, I am doing fluid simulations using OpenFOAM. This program produces a lot of output every time step. Producing output is surely not the most time consuming part, but I wonder whether writing output to the terminal or writing it into a file is faster. With thousands of time steps a... (1 Reply)
Discussion started by: Chuck Morris
1 Replies