Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plpat(3plplot) [debian man page]

PLPAT(3plplot)							    PLplot API							    PLPAT(3plplot)

NAME
plpat - Set area fill pattern SYNOPSIS
plpat(nlin, inc, del) DESCRIPTION
Sets the area fill pattern. The pattern consists of 1 or 2 sets of parallel lines with specified inclinations and spacings. The arguments to this routine are the number of sets to use (1 or 2) followed by two pointers to integer arrays (of 1 or 2 elements) specifying the inclinations in tenths of a degree and the spacing in micrometers. (also see plpsty(3plplot)) Redacted form: General: plpat(inc, del) Perl/PDL: plpat(nlin, inc, del) This function is used in example 15. ARGUMENTS
nlin (PLINT, input) Number of sets of lines making up the pattern, either 1 or 2. inc (PLINT *, input) Pointer to array with nlin elements. Specifies the line inclination in tenths of a degree. (Should be between -900 and 900). del (PLINT *, input) Pointer to array with nlin elements. Specifies the spacing in micrometers between the lines making up the pattern. 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 PLPAT(3plplot)

Check Out this Related Man Page

PLSCOL0(3plplot)						    PLplot API							  PLSCOL0(3plplot)

NAME
plscol0 - Set a given color from color map0 by 8 bit RGB value SYNOPSIS
plscol0(icol0, r, g, b) DESCRIPTION
Set a given color by 8-bit RGB value for color map0 (see the PLplot documentation). Overwrites the previous color value for the given index and, thus, does not result in any additional allocation of space for colors. Redacted form: plscol0(icol0, r, g, b) This function is not used in any examples. ARGUMENTS
icol0 (PLINT, input) Color index. Must be less than the maximum number of colors (which is set by default, by plscmap0n(3plplot), or even by plscmap0(3plplot)). r (PLINT, input) Unsigned 8-bit integer (0-255) representing the degree of red in the color. g (PLINT, input) Unsigned 8-bit integer (0-255) representing the degree of green in the color. b (PLINT, input) Unsigned 8-bit integer (0-255) representing the degree of blue in the color. 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 PLSCOL0(3plplot)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Extract fields

Hi, I have a tmp file like below: <ADATA> ANUM=900 ADESC=Saving ATYP=0 TXREGD=0 </ADATA> <ADATA> ANUM=890 ADESC=Saving ATYP=0 ABAL=9000 TXREGD=1 </ADATA> <ADATA> (2 Replies)
Discussion started by: kunigirib
2 Replies

2. Shell Programming and Scripting

Deleting lines ending with . from a file

HI I'm looking to delete lines ending with .tk from below data file --------- abc.tk mgm.tk dtk mgmstk ------ I have written below code ---- sed '/.tk *$/d' dat_file.txt > temp.txt ---- But its deleting all the lines ending with tk. I need to delete only the lines ending .tk my... (5 Replies)
Discussion started by: shekhar_v4
5 Replies

3. Shell Programming and Scripting

stampare righe precedenti ad un match in file

Salve a tutti...volevo chiedere a voi,che sicuramente ne sapete piu di me,come posso ottenere la seguente soluzione: ho un file del tipo: CIAO COME STAI PERCHE COME STAI CIAO COME VA ALLO CHE FACCIAMO ................. io vorre che nel caso in cui in una riga è presenta la parola... (1 Reply)
Discussion started by: fabi20
1 Replies

4. UNIX for Dummies Questions & Answers

How to del word by random input?

Hi, I got big problem. a line contains like this: Hell "A,B,C", how to delete A or B or C by using sed or other tools? I do not have any idea. Many thanks. (2 Replies)
Discussion started by: lemon_06
2 Replies

5. Shell Programming and Scripting

Want to Insert few lines which are stored in some file before a pattern in another file

Hello, I have few lines to be inserted in file_lines_to_insert. In another file final_file, I have to add lines from above file file_lines_to_insert before a particular pattern. e.g. $ cat file_lines_to_insert => contents are abc def lkj In another file final_file, before a... (6 Replies)
Discussion started by: nehashine
6 Replies

6. Shell Programming and Scripting

Write a shell program with input

Hi, Here is my question: I want a shell script which I name as 'del', and can be used as del(string). when run del(string), it will delete several directories at different locations in my system,like: rm -fr /lustre/fs/scratch/user/$string rm -fr /home/user/$string rm -fr... (4 Replies)
Discussion started by: 1988PF
4 Replies

7. Shell Programming and Scripting

Summing a number column

hi All, i have a file in which only one column is there., test.txt ====== -900.01 -900.02 -900.03 -900.04 -900.05 -900.06 -900.07 -900.08 -900.09 900.01 900.02 900.03 900.04 900.05 (4 Replies)
Discussion started by: mechvijays
4 Replies

8. Shell Programming and Scripting

Search for sequential pattern

input file: 4 5 1 A 1 2 3 4 s 8 (input file can be many millions of lines long) I want to search the example input file above, and when I find 4 sequential rows with values of 1,2,3,4 return those values and the two previous ones. In this case it should return 1,A,1,2,3,4 I know... (8 Replies)
Discussion started by: cedenker
8 Replies