comp.lang.ada
 help / color / mirror / Atom feed
* ANN: PLplot plotting library with Ada bindings
@ 2013-10-02  0:31 Jerry
  2013-10-02  0:45 ` Jeffrey Carter
  2013-11-12 15:27 ` Graham Stark
  0 siblings, 2 replies; 11+ messages in thread
From: Jerry @ 2013-10-02  0:31 UTC (permalink / 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


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2013-11-18 15:11 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-02  0:31 ANN: PLplot plotting library with Ada bindings Jerry
2013-10-02  0:45 ` 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

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