PLplot 5.9.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News PLplot 5.9.2 (Default branch)
# 1  
Old 01-27-2009
PLplot 5.9.2 (Default branch)

Image PLplot is a library of C functions that are useful for making scientific plots from programs written in a wide variety of languages. It can be used to create standard x-y plots, semi-log plots, log-log plots, contour plots, 3D plots, shade (gray-scale and color) plots, mesh plots, bar charts, and pie charts. Multiple graphs may be placed on a single page with multiple lines in each graph. Different line styles, widths, and colors are supported. A virtually infinite number of distinct area fill patterns may be used. A variety of output devices and file formats are supported. License: GNU Lesser General Public License (LGPL) Changes:
The autotools were replaced with a CMake build system. Windows is now completely supported. Several language bindings were added: Ada, D, Lua, and OCaml. Several drivers were added: wxWidgets, PDF, Cairo, and SVG. Numerous features were added, such as transparency and full unicode support. Many bugs were fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PLSTRING3(3plplot)						    PLplot API							PLSTRING3(3plplot)

NAME
plstring3 - Plot a glyph at the specified 3D points SYNOPSIS
plstring3(n, x, y, z, string) DESCRIPTION
Plot a glyph at the specified 3D points. (Supersedes plpoin3(3plplot) because many[!] more glyphs are accessible with plstring3(3plplot).) Set up the call to this function similar to what is done for plline3(3plplot). The glyph is specified with a PLplot user string. Note that the user string is not actually limited to one glyph so it is possible (but not normally useful) to plot more than one glyph at the speci- fied points with this function. As with plmtex(3plplot) and plptex(3plplot), the user string can contain FCI escapes to determine the font, UTF-8 code to determine the glyph or else PLplot escapes for Hershey or unicode text to determine the glyph. Redacted form: plstring3(x, y, z, string) This function is used in example 18. ARGUMENTS
n (PLINT, input) Number of points in the x, y, and z arrays. x (PLFLT *, input) Pointer to an array with X coordinates of points. y (PLFLT *, input) Pointer to an array with Y coordinates of points. z (PLFLT *, input) Pointer to an array with Z coordinates of points. string (const char *, input) PLplot user string corresponding to the glyph to be plotted at each of the n points. 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 PLSTRING3(3plplot)