comp.lang.ada
 help / color / mirror / Atom feed
From: Jerry <lanceboyle@qwest.net>
Subject: ANN: PLplot plotting library with Ada bindings
Date: Tue, 1 Oct 2013 17:31:44 -0700 (PDT)
Date: 2013-10-01T17:31:44-07:00	[thread overview]
Message-ID: <61b58fde-2542-485a-a5e8-c7041ad822bd@googlegroups.com> (raw)

PLplot 5.9.10 has just been released. PLplot is an extensive plotting library with Ada bindings.

http://plplot.sourceforge.net/

In addition to the bindings, the Ada component adds substantial ease-of-use functionality that eliminates the need to learn and code a lot of set-up routines. These easy-to-use routines will work for most day-to-day plotting. For example, to make an x-y plot:


with
   PLplot;
use
   PLplot;
procedure Simple_Example is
   x, y : Real_Vector(-10 .. 10);
begin
   for i in x'range loop 
      x(i) := Long_Float(i);
      y(i) := x(i)**2;
   end loop;
   Initialize_PLplot; -- Call this only once.
   Simple_Plot(x, y); -- Make the plot.
   -- Make more plots here.
   End_PLplot;        -- Call this only once.
end Simple_Example;


Jerry


             reply	other threads:[~2013-10-02  0:31 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-02  0:31 Jerry [this message]
2013-10-02  0:45 ` ANN: PLplot plotting library with Ada bindings Jeffrey Carter
2013-10-03  4:39   ` Anatoly Chernyshev
2013-10-03  5:27     ` Jeffrey Carter
2013-10-04 23:55   ` Jerry
2013-10-19  2:27     ` Randy Brukardt
2013-10-22  4:20       ` Jerry
2013-11-12 15:27 ` Graham Stark
2013-11-13 22:51   ` Jerry
2013-11-15  5:16   ` Jerry
2013-11-18 15:11     ` Graham Stark
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox