Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plstar(3plplot) [debian man page]

PLSTAR(3plplot) 						    PLplot API							   PLSTAR(3plplot)

NAME
plstar - Initialization SYNOPSIS
plstar(nx, ny) DESCRIPTION
Initializing the plotting package. The program prompts for the device keyword or number of the desired output device. Hitting a RETURN in response to the prompt is the same as selecting the first device. If only one device is enabled when PLplot is installed, plstar(3plplot) will issue no prompt. The output device is divided into nx by ny subpages, each of which may be used independently. The subroutine pladv(3plplot) is used to advance from one subpage to the next. Redacted form: plstar(nx, ny) This function is used in example 1. ARGUMENTS
nx (PLINT, input) Number of subpages to divide output page in the horizontal direction. ny (PLINT, input) Number of subpages to divide output page in the vertical direction. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLSTAR(3plplot)

Check Out this Related Man Page

PLADV(3plplot)							    PLplot API							    PLADV(3plplot)

NAME
pladv - Advance the (sub-)page SYNOPSIS
pladv(sub) DESCRIPTION
Advances to the next subpage if sub=0, performing a page advance if there are no remaining subpages on the current page. If subpages aren't being used, pladv(3plplot)(0) will always advance the page. If sub>0, PLplot switches to the specified subpage. Note that this allows you to overwrite a plot on the specified subpage; if this is not what you intended, use pleop(3plplot) followed by plbop(3plplot) to first advance the page. This routine is called automatically (with sub=0) by plenv(3plplot), but if plenv(3plplot) is not used, pladv(3plplot) must be called after initializing PLplot but before defining the viewport. Redacted form: pladv(sub) This function is used in examples 1,2,4,6-12,14-18,20,21,23-27,29,31. ARGUMENTS
sub (PLINT, input) Specifies the subpage number (starting from 1 in the top left corner and increasing along the rows) to which to advance. Set to zero to advance to the next subpage. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLADV(3plplot)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

divide field in two strings

Hi everybody: Anybody know how could I divide a field like this: 1234 like 12 34. thanks in advance. (2 Replies)
Discussion started by: tonet
2 Replies

2. UNIX for Dummies Questions & Answers

divide issue

Hi, I have a issue dividing 2 values in UNIX a=15 b=100 c = a / b ==> and it is returning 0 instead of 0.15 into variable C. How can i resolve this issue ? please help (1 Reply)
Discussion started by: kotasateesh
1 Replies

3. UNIX for Dummies Questions & Answers

Initialization Problems - Cannot execute automatically

Figured out the first half but am still having a little trouble shooting problem with the Initialization Files. I am working in bash on a remote server. When I log on I am seeing the correct prompt but right before that I am also seeing this the id -u integer expression expected is what... (2 Replies)
Discussion started by: moonunit
2 Replies

4. AIX

topas -P output to file

Hi, I need to output to a file, what will be ftp'ed to windows the output of a topas -P command in AIX. I can't install anything in the server (because it's the bank AIX server) but i need to control and keep the history of the % cpu that my processes use. I tried to use topas -R >>... (7 Replies)
Discussion started by: jtmartins
7 Replies

5. Shell Programming and Scripting

How can I change is output format by awk ?

Hello, Can you tell me how can I change this format by awk Input 0.2057422D-01 0.2463722D-01 -0.1068047D-02 Output 0.02057422 0.02463722 -0.001068047 Thanks wan (8 Replies)
Discussion started by: wanchem
8 Replies

6. Shell Programming and Scripting

To export from particular column

Hi Guys, I am using below command to export the hive columns in file where in i need to take from specific column table id_number name age hive -e "show columns from table" | sed 's/^*//;s/*$//' | tr '\n' ',' | tr '' '' > table_column i am getting below JAVA CONFIG... (8 Replies)
Discussion started by: rohit_shinez
8 Replies