gnuplot
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 44
jgnuplot 0.2
jgnuplot is a Java library for interfacing with the gnuplot plotting package. more>>
jgnuplot project is a Java library for interfacing with the gnuplot plotting package which outputs to X11, PostScript, PNG, GIF and other formats.
This library generates temporary gnuplot files which result in plots in specified output files.
The jar files can be build with the command:
$ ant
This compiles, tests and packages the software, resulting in the these files:
dist/
jgnuplot-[version].jar
jgnuplot-[version].jar.MD5
jgnuplot-[version]-src.tar.gz
jgnuplot-[version]-src.tar.gz.MD5
jgnuplot-[version]-src.zip
jgnuplot-[version]-src.zip.MD5
doc/
api/
index.html
...
These and any intermediate files can be removed by the command:
$ ant clean
Enhancements:
- general: Small bug fix [ 1517826 ] NullPointerException in Plot.setOutput(...).
<<lessThis library generates temporary gnuplot files which result in plots in specified output files.
The jar files can be build with the command:
$ ant
This compiles, tests and packages the software, resulting in the these files:
dist/
jgnuplot-[version].jar
jgnuplot-[version].jar.MD5
jgnuplot-[version]-src.tar.gz
jgnuplot-[version]-src.tar.gz.MD5
jgnuplot-[version]-src.zip
jgnuplot-[version]-src.zip.MD5
doc/
api/
index.html
...
These and any intermediate files can be removed by the command:
$ ant clean
Enhancements:
- general: Small bug fix [ 1517826 ] NullPointerException in Plot.setOutput(...).
Download (0.020MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1116 downloads
Term::Gnuplot 0.90380905
Term::Gnuplot is a Perl module for lowlevel graphics using gnuplot drawing routines. more>>
Term::Gnuplot is a Perl module for lowlevel graphics using gnuplot drawing routines.
SYNOPSIS
use Term::Gnuplot :ALL;
list_terms();
change_term(dumb) or die "Cannot set terminal.n";
term_init(); # init()
term_start_plot(); # graphics();
$xmax = scaled_xmax();
$ymax = scaled_ymax();
linewidth(1.0)
linetype(LT_BLACK);
move(0,0);
vector($xmax-1,0);
vector($xmax-1,$ymax-1);
vector(0,$ymax-1);
vector(0,0);
justify_text(LEFT);
put_text(h_char()*5, $ymax - v_char()*3,"Terminal Test, Perl");
$x = $xmax/4;
$y = $ymax/4;
$xl = h_tic()*5;
$yl = v_tic()*5;
linetype(2);
arrow($x,$y,$x+$xl,$y,1);
arrow($x,$y,$x+$xl/2,$y+$yl,1);
arrow($x,$y,$x,$y+$yl,1);
arrow($x,$y,$x-$xl/2,$y+$yl,0);
arrow($x,$y,$x-$xl,$y,1);
arrow($x,$y,$x-$xl,$y-$yl,1);
arrow($x,$y,$x,$y-$yl,1);
arrow($x,$y,$x+$xl,$y-$yl,1);
term_end_plot(); # text();
Term::Gnuplot::reset();
<<lessSYNOPSIS
use Term::Gnuplot :ALL;
list_terms();
change_term(dumb) or die "Cannot set terminal.n";
term_init(); # init()
term_start_plot(); # graphics();
$xmax = scaled_xmax();
$ymax = scaled_ymax();
linewidth(1.0)
linetype(LT_BLACK);
move(0,0);
vector($xmax-1,0);
vector($xmax-1,$ymax-1);
vector(0,$ymax-1);
vector(0,0);
justify_text(LEFT);
put_text(h_char()*5, $ymax - v_char()*3,"Terminal Test, Perl");
$x = $xmax/4;
$y = $ymax/4;
$xl = h_tic()*5;
$yl = v_tic()*5;
linetype(2);
arrow($x,$y,$x+$xl,$y,1);
arrow($x,$y,$x+$xl/2,$y+$yl,1);
arrow($x,$y,$x,$y+$yl,1);
arrow($x,$y,$x-$xl/2,$y+$yl,0);
arrow($x,$y,$x-$xl,$y,1);
arrow($x,$y,$x-$xl,$y-$yl,1);
arrow($x,$y,$x,$y-$yl,1);
arrow($x,$y,$x+$xl,$y-$yl,1);
term_end_plot(); # text();
Term::Gnuplot::reset();
Download (0.70MB)
Added: 2006-08-29 License: Perl Artistic License Price:
1152 downloads
Chart::Graph::Gnuplot 3.2
Chart::Graph::Gnuplot is a function in module Chart::Graph that lets you generate graphs on the fly in perl. more>>
Chart::Graph::Gnuplot is a function in module Chart::Graph that lets you generate graphs on the fly in perl.
SYNOPSIS
use Chart::Graph::Gnuplot qw(&gnuplot);
gnuplot(%global_options, [%data_set_options, @matrix],
[%data_set_options, @x_column, @y_column],
[%data_set_options, < filename >], ... );
It was written as a front-end application to gnuplot for hassle-free generation of graphs. gnuplot() can be supplied with many of the same options and arguments that can be given to gnuplot. For more information on gnuplot see the end of this section.
OPTIONS
gnuplot() has a very large number of options corresponding to options available with the gnuplot application itself. This Perl wrapper provides a large subset of the functionality of the application.
+----------------------------------------------------------------------------+
| GLOBAL OPTIONS: |
+----------------+-----------------------------+-----------------------------+
| NAME | OPTIONS | DEFAULT |
+----------------+-----------------------------+-----------------------------+
|title | set your own title | untitled |
|output type | pbm,gif,tgif,png, | png |
| | svg or "eps $epsoptions"| |
|output file | set your own output file, | untitled-gnuplot.png |
| | undef to output to STDOUT | |
|x-axis label | set your own label | x-axis |
|y-axis label | set your own label | y-axis |
|x2-axis label | set your own label | none |
|y2-axis label | set your own label | none |
|logscale x | 0 or 1 | 0 |
|logscale y | 0 or 1 | 0 |
|logscale x2 | 0 or 1 | 0 |
|logscale y2 | 0 or 1 | 0 |
| xtics | set your own tics on x-axis | none |
| | (see example below) | |
| x2tics | set your own tics on x2-axis| none |
| | (see example below) | |
| ytics | set your own tics on y-axis | none |
| | (see example below) | |
| y2tics | set your own tics on y2-axis| none |
| | (see example below) | |
| xrange | set xrange, accepts both | none |
| | string [$xmin:$xmax] | |
| | or arrayref [$xmin,$xmax] | |
| yrange | set yrange, see xrange | none |
| | | |
| uts | set your own range in unix | none |
| | timestamps, array ref: | |
| | [start_ts,end_ts, , | |
| | ] | |
| | see UNIX TIMESTAMPS example| |
| xdata | time to indicate that | none |
| | x-axis is date/time data | |
| ydata | time to indicate that | none |
| | y-axis is date/time data | |
| x2data | time to indicate that | none |
| | x2-axis is date/time data | |
| y2data | time to indicate that | none |
| | y2-axis is date/time data | |
| timefmt | "Input date/time string" | none |
| | see Gnuplot manual for info| |
| format | array ref: First element is | |
| | axis: x, y, x2, y2.| |
| | Second element is | |
| | output date/time string" | |
| | see Gnuplot manual for info| |
| extra_opts | set your own Gnuplot | none |
| | options, either an arrayref| |
| | or string ("n"-separated) | |
| size | scale the display size of | none |
| | the plot, arrayref [$x, $y]| |
+----------------+-----------------------------+-----------------------------+
+----------------------------------------------------------------------------+
| Data Set Options: |
+----------------+-----------------------------+-----------------------------+
| Name | Options | Default |
+----------------+-----------------------------+-----------------------------+
| type | matrix, columns, file,| none |
| | function, see examples | |
| | below | |
| title | set your own title | untitled data |
| style | points,lines,impulses | points |
| | errorbars, etc... | |
| | see ERRORBARS example | |
| axes | x1y1, x2y2, x1y2, etc.| x1y1 |
| using | map data to what will be | 1:2 |
| | plotted, see ERRORBARS | |
| | example | |
+----------------+-----------------------------+-----------------------------+
<<lessSYNOPSIS
use Chart::Graph::Gnuplot qw(&gnuplot);
gnuplot(%global_options, [%data_set_options, @matrix],
[%data_set_options, @x_column, @y_column],
[%data_set_options, < filename >], ... );
It was written as a front-end application to gnuplot for hassle-free generation of graphs. gnuplot() can be supplied with many of the same options and arguments that can be given to gnuplot. For more information on gnuplot see the end of this section.
OPTIONS
gnuplot() has a very large number of options corresponding to options available with the gnuplot application itself. This Perl wrapper provides a large subset of the functionality of the application.
+----------------------------------------------------------------------------+
| GLOBAL OPTIONS: |
+----------------+-----------------------------+-----------------------------+
| NAME | OPTIONS | DEFAULT |
+----------------+-----------------------------+-----------------------------+
|title | set your own title | untitled |
|output type | pbm,gif,tgif,png, | png |
| | svg or "eps $epsoptions"| |
|output file | set your own output file, | untitled-gnuplot.png |
| | undef to output to STDOUT | |
|x-axis label | set your own label | x-axis |
|y-axis label | set your own label | y-axis |
|x2-axis label | set your own label | none |
|y2-axis label | set your own label | none |
|logscale x | 0 or 1 | 0 |
|logscale y | 0 or 1 | 0 |
|logscale x2 | 0 or 1 | 0 |
|logscale y2 | 0 or 1 | 0 |
| xtics | set your own tics on x-axis | none |
| | (see example below) | |
| x2tics | set your own tics on x2-axis| none |
| | (see example below) | |
| ytics | set your own tics on y-axis | none |
| | (see example below) | |
| y2tics | set your own tics on y2-axis| none |
| | (see example below) | |
| xrange | set xrange, accepts both | none |
| | string [$xmin:$xmax] | |
| | or arrayref [$xmin,$xmax] | |
| yrange | set yrange, see xrange | none |
| | | |
| uts | set your own range in unix | none |
| | timestamps, array ref: | |
| | [start_ts,end_ts, , | |
| | ] | |
| | see UNIX TIMESTAMPS example| |
| xdata | time to indicate that | none |
| | x-axis is date/time data | |
| ydata | time to indicate that | none |
| | y-axis is date/time data | |
| x2data | time to indicate that | none |
| | x2-axis is date/time data | |
| y2data | time to indicate that | none |
| | y2-axis is date/time data | |
| timefmt | "Input date/time string" | none |
| | see Gnuplot manual for info| |
| format | array ref: First element is | |
| | axis: x, y, x2, y2.| |
| | Second element is | |
| | output date/time string" | |
| | see Gnuplot manual for info| |
| extra_opts | set your own Gnuplot | none |
| | options, either an arrayref| |
| | or string ("n"-separated) | |
| size | scale the display size of | none |
| | the plot, arrayref [$x, $y]| |
+----------------+-----------------------------+-----------------------------+
+----------------------------------------------------------------------------+
| Data Set Options: |
+----------------+-----------------------------+-----------------------------+
| Name | Options | Default |
+----------------+-----------------------------+-----------------------------+
| type | matrix, columns, file,| none |
| | function, see examples | |
| | below | |
| title | set your own title | untitled data |
| style | points,lines,impulses | points |
| | errorbars, etc... | |
| | see ERRORBARS example | |
| axes | x1y1, x2y2, x1y2, etc.| x1y1 |
| using | map data to what will be | 1:2 |
| | plotted, see ERRORBARS | |
| | example | |
+----------------+-----------------------------+-----------------------------+
Download (0.008MB)
Added: 2007-07-18 License: Perl Artistic License Price:
837 downloads
Term::GnuplotTerminals 0.90380905
Term::GnuplotTerminals is a Perl documentation of gnuplot output devices. more>>
Term::GnuplotTerminals is a Perl documentation of gnuplot output devices.
aed767
The aed512 and aed767 terminal drivers support AED graphics terminals. The two drivers differ only in their horizontal ranges, which are 512 and 768 pixels, respectively. Their vertical range is 575 pixels. There are no options for these drivers.
aifm
Several options may be set in aifm---the Adobe Illustrator 3.0+ driver.
Syntax:
set terminal aifm {< color >} {"< fontname >"} {< fontsize >}
< color > is either color or monochrome; "< fontname >" is the name of a valid PostScript font; < fontsize > is the size of the font in PostScript points, before scaling by the set size command. Selecting default sets all options to their default values: monochrome, "Times-Roman", and 14pt.
Since AI does not really support multiple pages, multiple graphs will be drawn directly on top of one another. However, each graph will be grouped individually, making it easy to separate them inside AI (just pick them up and move them).
Examples:
set term aifm
set term aifm 22
set size 0.7,1.4; set term aifm color "Times-Roman" 14
amiga
The amiga terminal, for Commodore Amiga computers, allows the user to plot either to a screen (default), or, if Kickstart 3.0 or higher is installed, to a window on the current public screen. The font and its size can also be selected.
Syntax:
set terminal amiga {screen | window} {"< fontname >"} {< fontsize >}
The default font is 8-point "topaz".
The screen option uses a virtual screen, so it is possible that the graph will be larger than the screen.
apollo
The apollo terminal driver supports the Apollo Graphics Primitive Resource with rescaling after window resizing. It has no options.
If a fixed-size window is desired, the gpr terminal may be used instead.
<<lessaed767
The aed512 and aed767 terminal drivers support AED graphics terminals. The two drivers differ only in their horizontal ranges, which are 512 and 768 pixels, respectively. Their vertical range is 575 pixels. There are no options for these drivers.
aifm
Several options may be set in aifm---the Adobe Illustrator 3.0+ driver.
Syntax:
set terminal aifm {< color >} {"< fontname >"} {< fontsize >}
< color > is either color or monochrome; "< fontname >" is the name of a valid PostScript font; < fontsize > is the size of the font in PostScript points, before scaling by the set size command. Selecting default sets all options to their default values: monochrome, "Times-Roman", and 14pt.
Since AI does not really support multiple pages, multiple graphs will be drawn directly on top of one another. However, each graph will be grouped individually, making it easy to separate them inside AI (just pick them up and move them).
Examples:
set term aifm
set term aifm 22
set size 0.7,1.4; set term aifm color "Times-Roman" 14
amiga
The amiga terminal, for Commodore Amiga computers, allows the user to plot either to a screen (default), or, if Kickstart 3.0 or higher is installed, to a window on the current public screen. The font and its size can also be selected.
Syntax:
set terminal amiga {screen | window} {"< fontname >"} {< fontsize >}
The default font is 8-point "topaz".
The screen option uses a virtual screen, so it is possible that the graph will be larger than the screen.
apollo
The apollo terminal driver supports the Apollo Graphics Primitive Resource with rescaling after window resizing. It has no options.
If a fixed-size window is desired, the gpr terminal may be used instead.
Download (0.70MB)
Added: 2006-10-14 License: Perl Artistic License Price:
1105 downloads
GPlot 1.2
GPlot provides a convenient front-end for gnuplot. more>>
GPlot provides a convenient front-end for gnuplot. GPlot GUI accepts a large set of options to generate a single plot of one or more sets of data (overlaid as necessary). This adds no new functionality to gnuplot, but rather makes it easier to generate gnuplot input.
Sometimes the simplest things can be remarkably difficult to get done. That was my reaction when I first tried to make a few simple plots. I knew about gnuplot, but it took way too long to make my first useful plot.
Perhaps the most frustrating task was trying to do something as simple (to me) as "plot this data with a blue line" or maybe the dauntingly (:-) complex "plot this data with a blue line using triangles for the data points". Eventually, I figured out one answer was this fragment:
set linestyle 10 lt 3 lw 1 pt 8 ps 0.55 plot my.data with linespoints linestyle 10
Alright, Im fed up! No more trying to figure out lt 3 versus lt 5 and pt 3 versus pt 22!
I just want a simple command I can understand that does what I want:
gplot.pl -color red -point triangle my.data
Sure gplot.pl cant handle five or ten million complexities that gnuplot can -- but I dont care. All I want is a way to plot some simple columnar data and get a graphic or
Postscript file of it and I dont want to spend very many seconds figuring it out. If this is what you want too, gplot.pl is for you too.
Examples:
# plot data in 1a.data. Show as X window
gplot.pl 1a.data
# plot 2 sets of data. Show as X window
gplot.pl 1a.data 2a.data
# plot data in 1a.data. Create a Postscript file /tmp/gplot.ps
gplot.pl -type ps 1a.data
# plot data in 1a.data. Create a Postscript file
gplot.pl -type ps -outfile 1a.ps 1a.data
# plot data in 1a.data. Annotate it a little
gplot.pl -title "This is my data" -ylabel "Vertical Axis"
-xlabel "Horizontal Axis" 1a.data
# plot 3 sets of data, specify colors and points
gplot.pl -color green -point uptriangle 1a.data
-color blue -point box 2a.data
-color green -point circle 3a.data
Enhancements:
- This release adds support for gnuplot 4.0.
- It adds support for JPEG output files.
- There is no need to upgrade unless you are on gnuplot 4.0.
- Stay on release 1.1 if you are using gnuplot 3.x.
<<lessSometimes the simplest things can be remarkably difficult to get done. That was my reaction when I first tried to make a few simple plots. I knew about gnuplot, but it took way too long to make my first useful plot.
Perhaps the most frustrating task was trying to do something as simple (to me) as "plot this data with a blue line" or maybe the dauntingly (:-) complex "plot this data with a blue line using triangles for the data points". Eventually, I figured out one answer was this fragment:
set linestyle 10 lt 3 lw 1 pt 8 ps 0.55 plot my.data with linespoints linestyle 10
Alright, Im fed up! No more trying to figure out lt 3 versus lt 5 and pt 3 versus pt 22!
I just want a simple command I can understand that does what I want:
gplot.pl -color red -point triangle my.data
Sure gplot.pl cant handle five or ten million complexities that gnuplot can -- but I dont care. All I want is a way to plot some simple columnar data and get a graphic or
Postscript file of it and I dont want to spend very many seconds figuring it out. If this is what you want too, gplot.pl is for you too.
Examples:
# plot data in 1a.data. Show as X window
gplot.pl 1a.data
# plot 2 sets of data. Show as X window
gplot.pl 1a.data 2a.data
# plot data in 1a.data. Create a Postscript file /tmp/gplot.ps
gplot.pl -type ps 1a.data
# plot data in 1a.data. Create a Postscript file
gplot.pl -type ps -outfile 1a.ps 1a.data
# plot data in 1a.data. Annotate it a little
gplot.pl -title "This is my data" -ylabel "Vertical Axis"
-xlabel "Horizontal Axis" 1a.data
# plot 3 sets of data, specify colors and points
gplot.pl -color green -point uptriangle 1a.data
-color blue -point box 2a.data
-color green -point circle 3a.data
Enhancements:
- This release adds support for gnuplot 4.0.
- It adds support for JPEG output files.
- There is no need to upgrade unless you are on gnuplot 4.0.
- Stay on release 1.1 if you are using gnuplot 3.x.
Download (0.63MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1410 downloads
pyglplot 0.1.0
pyglplot is an interactive 3D plotting and visualization tool written as a Python module that uses OpenGL and the GIMP Toolkit. more>>
pyglplot is a program to 3D-plot mathematical functions and datafiles. It is written as a module for python and as such features the full power and flexibility of the python programming language.
Main features:
Data Sources
- Plot python functions
- Plot python dictionaries containing the coordinates of the points and their position in the grid
- Plot plain datafiles as understood for example by gnuplot
Graphics
- Can make 3D plots of surfaces in normal or parametric mode
- Support coordinate transforms, i.e. can make e.g. polar plots
- Support for pm3d-style coloring of the surface
- Support for wireframe plotting atop of the surface
- Support for transparency: translucent plots
- Support for different types of fog and arbitrary background colors
- Support for dynamic light and specular reflexes etc.
- Use either perspective projection or parallel projection
- Save the rendered plots as portable network graphics (.png)
- Adjust all graphics parameters via dialog windows
Platforms
- This program is developed and tested on Max OS X 10.4 on powerpc with fink and Debian GNU/Linux on i386. It should compile and run everywhere where its prerequisites and requisites thereof are available. These are gtkglext-1.0 and gthread-2.0. Some minimum versions of the libriaries must be met, unfortunately, the gtk+-2.2 packages provided by fink for Mac OS X 10.3 are not sufficient -- perhaps I will port it there.
<<lessMain features:
Data Sources
- Plot python functions
- Plot python dictionaries containing the coordinates of the points and their position in the grid
- Plot plain datafiles as understood for example by gnuplot
Graphics
- Can make 3D plots of surfaces in normal or parametric mode
- Support coordinate transforms, i.e. can make e.g. polar plots
- Support for pm3d-style coloring of the surface
- Support for wireframe plotting atop of the surface
- Support for transparency: translucent plots
- Support for different types of fog and arbitrary background colors
- Support for dynamic light and specular reflexes etc.
- Use either perspective projection or parallel projection
- Save the rendered plots as portable network graphics (.png)
- Adjust all graphics parameters via dialog windows
Platforms
- This program is developed and tested on Max OS X 10.4 on powerpc with fink and Debian GNU/Linux on i386. It should compile and run everywhere where its prerequisites and requisites thereof are available. These are gtkglext-1.0 and gthread-2.0. Some minimum versions of the libriaries must be met, unfortunately, the gtk+-2.2 packages provided by fink for Mac OS X 10.3 are not sufficient -- perhaps I will port it there.
Download (0.23MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1542 downloads
PlotDrop 0.51
PlotDrop is designed for quick simple visualisation of 2D data series. more>>
PlotDrop is designed for quick simple visualisation of 2D data series. It is not intended to encompass anywhere near the full capabilities of GNUPlot.
PlotDrop software is made to be used in tandem with an external filesystem browser such as GNOMEs Nautilus or KDEs Konqueror.
Files containing data are added by dragging them from the browser to the file list.
Data files should be simple flat data of the kind preferred by GNUPlot, like
1.0 3.6
2.0 5.2
4.0 5.1
The series of a datafile to plot is set as an integer in the plot list. To plot more than one series simply add a file more than once and set a different series number on each entry.
<<lessPlotDrop software is made to be used in tandem with an external filesystem browser such as GNOMEs Nautilus or KDEs Konqueror.
Files containing data are added by dragging them from the browser to the file list.
Data files should be simple flat data of the kind preferred by GNUPlot, like
1.0 3.6
2.0 5.2
4.0 5.1
The series of a datafile to plot is set as an integer in the plot list. To plot more than one series simply add a file more than once and set a different series number on each entry.
Download (0.021MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1263 downloads
sarPplot 1.0.3
sarPplot is a simple application which takes output of atsar application and put it into Gnuplot config files. more>>
sarPplot project is a simple application which takes output of atsar application and put it into Gnuplot config files, kind of useful on server boxes for performance analyze, which is availabel on:
- cpu
- processload
- disk
- disk-partition
- memory&swap
- paging&swapping
- interrupts
- kernel-resources
- ttyactivity
- net-interf(general)
- net-interf(errors)
- ipv4(general)
- ipv4(errors)
- tcpv4(general)
- tcpv4(errors)
- udpv4
- icmpv4(general)
- icmpv4(pertype)
- nfs(general)
- nfs(errors)
- nfs(server)
- nfs-rpc(calls)
Enhancements:
- A grid feature was added along with httprequests and httpdpid targets.
- A bug in the interr function was fixed.
<<less- cpu
- processload
- disk
- disk-partition
- memory&swap
- paging&swapping
- interrupts
- kernel-resources
- ttyactivity
- net-interf(general)
- net-interf(errors)
- ipv4(general)
- ipv4(errors)
- tcpv4(general)
- tcpv4(errors)
- udpv4
- icmpv4(general)
- icmpv4(pertype)
- nfs(general)
- nfs(errors)
- nfs(server)
- nfs-rpc(calls)
Enhancements:
- A grid feature was added along with httprequests and httpdpid targets.
- A bug in the interr function was fixed.
Download (0.011MB)
Added: 2006-09-03 License: GPL (GNU General Public License) Price:
1148 downloads
GNU Oleo 1.99.16
GNU Oleo is a lightweight spreadsheet application. more>>
GNU Oleo is a lightweight spreadsheet application.
It has internationalization support, an ncurses interface, a Motif/LessTif interface, and an autoconf/automake-based compilation process.
Current enhancements include printing and plotting.
Main features:
- Motif/LessTif interface, based on the XbaeMatrix widget
- Access to the statistics functions of the GSL (GNU Scientific Library).
- Support for opening multiple spreadsheets, each in a Motif window, at the same time.
- device independent graphics through GNU plotutils, replacing the older gnuplot interface
- more portable build through autoconf and automake
- internationalised (i18n)
- updated documentation
- ANSI C code (removed K&R stuff)
- filter mode (read file from stdin, save to stdout)
- better SYLK support
- improved printing (PostScript and PCL)
- database access (MySQL and DBF files)
- SciPlot graphics (Motif/LessTif only)
- cleaned up internals
- runs in character mode as well as in a GUI
- interface to CUPS to browse available printers
<<lessIt has internationalization support, an ncurses interface, a Motif/LessTif interface, and an autoconf/automake-based compilation process.
Current enhancements include printing and plotting.
Main features:
- Motif/LessTif interface, based on the XbaeMatrix widget
- Access to the statistics functions of the GSL (GNU Scientific Library).
- Support for opening multiple spreadsheets, each in a Motif window, at the same time.
- device independent graphics through GNU plotutils, replacing the older gnuplot interface
- more portable build through autoconf and automake
- internationalised (i18n)
- updated documentation
- ANSI C code (removed K&R stuff)
- filter mode (read file from stdin, save to stdout)
- better SYLK support
- improved printing (PostScript and PCL)
- database access (MySQL and DBF files)
- SciPlot graphics (Motif/LessTif only)
- cleaned up internals
- runs in character mode as well as in a GUI
- interface to CUPS to browse available printers
Download (0.77MB)
Added: 2006-09-27 License: GPL (GNU General Public License) Price:
1124 downloads
JAgents 0.1
JAgents project is a Game theoretic Evolutionary Network Traffic Simulator. more>>
JAgents project is a Game theoretic Evolutionary Network Traffic Simulator.
JAgents (A Game theoretic Evolutionary Network Traffic Simulator) is a tool for simulating dynamics of selfish users in traffic networks like the Internet.
Classical Game Theory has been extensively used to analyze the Internet. However, this analysis is limited to static properties of such models, e.g., equilibria, the price of anarchy, etc. Methods from Evolutionary Game Theory allow for analysis of dynamical properties.
The behavior of agents is simulated by continuous or discrete processes, the best-known of which is the so-called replicator dynamics.
JAgents can simulate a variety of these dynamics for arbitrary networks.
Main features:
- model networks and latency functions,
- find numerical solutions to these dynamics using the Runge-Kutta method,
- plot various time dependent data, like potential functions, e.g. the well known Rosenthal function, etc.
- numerically find equilibria,
- export and import graphs as xml documents (GraphML),
- export gnuplot,
- and more.
<<lessJAgents (A Game theoretic Evolutionary Network Traffic Simulator) is a tool for simulating dynamics of selfish users in traffic networks like the Internet.
Classical Game Theory has been extensively used to analyze the Internet. However, this analysis is limited to static properties of such models, e.g., equilibria, the price of anarchy, etc. Methods from Evolutionary Game Theory allow for analysis of dynamical properties.
The behavior of agents is simulated by continuous or discrete processes, the best-known of which is the so-called replicator dynamics.
JAgents can simulate a variety of these dynamics for arbitrary networks.
Main features:
- model networks and latency functions,
- find numerical solutions to these dynamics using the Runge-Kutta method,
- plot various time dependent data, like potential functions, e.g. the well known Rosenthal function, etc.
- numerically find equilibria,
- export and import graphs as xml documents (GraphML),
- export gnuplot,
- and more.
Download (0.10MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1088 downloads
Pantry 19
Pantry is a command-line nutrient analysis program for Unix-like operating systems. more>>
Pantry is a command-line nutrient analysis program for Unix-like operating systems. The project is still under development. What needs the most work right now is error checking and documentation. Below is a section from the Pantry user guide that describes Pantry in brief.
In addition to using Pantry from your shell prompt, you also interact with it through XML files. Using XML, you can edit Pantrys configuration file. You can also add nutrient information for custom foods (though Pantry includes nutrient information for over 7,000 foods to get you started) and recipes using XML.
Pantry currently runs only on Unix-like operating systems. Porting Pantry to Windows would be possible, but not trivial.
Pantrys advantages
Pantrys true command-line interface gives it many advantages. Because Pantry works from your shell prompt, you can easily combine it with other text-processing tools. You can also easily write scripts incorporating Pantry, in ways that even I cannot anticipate. This is the strength of the Unix "toolbox" way of using a computer.
In addition, nothing beats the speed of a command-line program for something you use frequently and are familiar with. If you are using a nutrient-analysis program to track your daily food intake, you will appreciate how quickly you can use Pantry for this purpose. Indeed, I developed Pantry due to my frustration with current tools because it was very tedious to use them to quickly tally a days food intake.
Because Pantry runs from a text console, you can easily set it up on one computer that has an SSH server running. You may then access your nutrient data from any computer that has an SSH client.
Pantry disadvantages
The biggest disadvantage of using Pantry is the same as its biggest advantage: its command-line interface. Graphical user interface programs attempt to be self-documenting: just sit down, click on some buttons, and hopefully you can figure things out. With Pantry, on the other hand, you will absolutely have to read this manual to figure out how it works, and you will need some practice before you are comfortable with Pantry. In this way, Pantry resembles other command-line oriented Unix programs. As with other Unix programs, once you learn Pantry, you will love its speed and efficiency--but you will have to spend some time learning.
Similarly, because of its command-line interface, you will find that you are most efficient with Pantry if you know your way around a Unix shell prompt. For example, you will find that you can use Pantry more quickly if you know how to use your shells features to manipulate your command history. Such knowledge is useful for any Unix command-line program, not just Pantry; however, building up this knowledge takes some time.
Pantry has no tools to graphically visualize your food intake. I might eventually add such features using Gnuplot or something similar.
A final disadvantage of using Pantry is that it is still new. I am still tweaking it, making changes, adding features, and improving the documentation. But perhaps this is not such a disadvantage: software that improves is nice. If you have any features that you would like, ask!
Enhancements:
- The --edit option was changed so it works correctly with plain text data files.
- The file format was changed to save disk space and memory; however, this makes Pantry native files that Pantry 19 uses incompatible with earlier versions.
- If users report this as a problem, then the author intends to write a converter.
- This release also includes minor bugfixes and improvements to error messages.
<<lessIn addition to using Pantry from your shell prompt, you also interact with it through XML files. Using XML, you can edit Pantrys configuration file. You can also add nutrient information for custom foods (though Pantry includes nutrient information for over 7,000 foods to get you started) and recipes using XML.
Pantry currently runs only on Unix-like operating systems. Porting Pantry to Windows would be possible, but not trivial.
Pantrys advantages
Pantrys true command-line interface gives it many advantages. Because Pantry works from your shell prompt, you can easily combine it with other text-processing tools. You can also easily write scripts incorporating Pantry, in ways that even I cannot anticipate. This is the strength of the Unix "toolbox" way of using a computer.
In addition, nothing beats the speed of a command-line program for something you use frequently and are familiar with. If you are using a nutrient-analysis program to track your daily food intake, you will appreciate how quickly you can use Pantry for this purpose. Indeed, I developed Pantry due to my frustration with current tools because it was very tedious to use them to quickly tally a days food intake.
Because Pantry runs from a text console, you can easily set it up on one computer that has an SSH server running. You may then access your nutrient data from any computer that has an SSH client.
Pantry disadvantages
The biggest disadvantage of using Pantry is the same as its biggest advantage: its command-line interface. Graphical user interface programs attempt to be self-documenting: just sit down, click on some buttons, and hopefully you can figure things out. With Pantry, on the other hand, you will absolutely have to read this manual to figure out how it works, and you will need some practice before you are comfortable with Pantry. In this way, Pantry resembles other command-line oriented Unix programs. As with other Unix programs, once you learn Pantry, you will love its speed and efficiency--but you will have to spend some time learning.
Similarly, because of its command-line interface, you will find that you are most efficient with Pantry if you know your way around a Unix shell prompt. For example, you will find that you can use Pantry more quickly if you know how to use your shells features to manipulate your command history. Such knowledge is useful for any Unix command-line program, not just Pantry; however, building up this knowledge takes some time.
Pantry has no tools to graphically visualize your food intake. I might eventually add such features using Gnuplot or something similar.
A final disadvantage of using Pantry is that it is still new. I am still tweaking it, making changes, adding features, and improving the documentation. But perhaps this is not such a disadvantage: software that improves is nice. If you have any features that you would like, ask!
Enhancements:
- The --edit option was changed so it works correctly with plain text data files.
- The file format was changed to save disk space and memory; however, this makes Pantry native files that Pantry 19 uses incompatible with earlier versions.
- If users report this as a problem, then the author intends to write a converter.
- This release also includes minor bugfixes and improvements to error messages.
Download (7.6MB)
Added: 2007-08-18 License: MIT/X Consortium License Price:
800 downloads
Kuliax 6.0
Kuliax project is an effort to bring Free and Open Source Software (FOSS) to University education, especially in Indonesia. more>>
Kuliax project is an effort to bring Free and Open Source Software (FOSS) to University education, especially in Indonesia. Many students and lecturers have been "addicted" to the closed-source and expensive software that they couldnt afford or not suitable with their needs. Universities encouraged to do something important to the _real_ meaning of education by using and developing FOSS.
FOSS gives civitas academica freedom to use, study, modify, and distribute all software released under its licenses. We should spend more money to the empowerment of human resources, instead of products. This is great, if each universities generate as many as possible people who can develop themself and their surrounding with true and open knowledge, the one that forgeted by some/most education institutions.
Kuliax Project provides bridge between students, lecturers, and civitas academica to cooperate with each other. In Bahasa Indonesia, its called Gotong Royong. Like the logo which symbolizes peoples hands that holds one to another, making a square.
The near possible milestone to reach that goal is developing Linux distro to fit University or Campus needs and invite people to join in.
Kuliax, is one of the implementation for the first milestone, Linux distro for Information Technology, Electrical Engineering, Computer Science, or related department, but its likely can be used by some others departments as well. It tries to provide "base system" and applications suited to the curriculum/syllabus.
Applications installed:
- Desktop Environment: KDE 3.5.5
- Internet: Akregator, Gaim 2.0, KFTPGrabber 0.8.0, KMail, Iceweasel 2.0 (Firefox)
- Graphics: XMRM, Gwenview, ImageMagick, Inkscape 0.44.1, The Gimp 2.2.13, autotrace, gif2png, qiv, xaos, xfig
- Multimedia: XMMS 1.2.10+plugins, (K)MPlayer, VCD tools, Audacity, Kino 0.92+plugins, dvgrab, k3b, sox
- Office: OpenOffice.org 2.0.4
- File Reader: KPDF, KchmViewer
- Brainstorming: Freemind 0.8.0
- Dictionary: StarDict 2.4.8, English-Indonesian dictionary-database
- Printing: CUPS+driver
- Wireless: ndiswrapper, wireless-tools, wlassistant, wpasupplicant
- Statistics and Data Mining: R-base, RKWard
- Mathematics and Modelling: GNUPLOT, Octave
- Electrical/Electronics and Digital/Microprocessor: gnusim8085, gpsim, ktechlab, sdcc, tkgate, uisp
- Programming:
- LISP: CLISP 2.4.1
- PHP: PHP4 dan PHP5
- Assembler: nasm 0.98.38
- C/C++: GCC 4.1.1
- Haskell: Hugs 98.200503.08
- Java(tm): Sun Java 5.0
- Pascal: Freepascal 2.0.0
- Perl: Perl 5.8.8
- Prolog: SWI-Prolog 5.6.14
- Python: Python 2.4.4
- Scheme: Guile 1.6.8
- Smalltalk: GNU Smalltalk 2.1.8
- Tcl/Tk: Tcl/Tk 8.4
- Development: CVS, KDevelop 3.3.5 (IDE), Motor 3.4.0 (IDE), autoconf, automake, distcc, gdb, make, ncurses, whiptail 0.52.2
- Computer Organization and Architecture: GNU MIX Development Kit
- Operating System: UserModeLinux, VisualOS, qemu
- Computer Network: BIND9, DHCP3 server/client, arpwatch, bridge-utils, etherwake, fping, htb-gen, iftop, iproute, iptables, iptraf, krdc, krfb, mtr, netcat, netpipe-tcp, openssh, scli, shaper (CBQ), sipcalc, stunnel, tcpdump, tcpwrapper, telnet-ssl, vpnc, vsftpd
- Network Simulator: cnet
- Web Server: Apache 2.2.3
- Database: MySQL 5.0.27, SQLite 3.3.8, sqlitebrowser 1.3
- Security: GNUPG 1.4.5, dsniff, nmap, outguess
- Software Engineering: ArgoUML, GanttProject, sloccount
- Utilities: abakus, bc, ethtool, fdisk/cfdisk, knetworkconf, ksysguard, mc, qtparted, rsync, screen, synaptic, vrms
- E-Book: Operating System Book, created and maintained by Masyarakat Digital Gotong Royong (MDGR), in Bahasa Indonesia
<<lessFOSS gives civitas academica freedom to use, study, modify, and distribute all software released under its licenses. We should spend more money to the empowerment of human resources, instead of products. This is great, if each universities generate as many as possible people who can develop themself and their surrounding with true and open knowledge, the one that forgeted by some/most education institutions.
Kuliax Project provides bridge between students, lecturers, and civitas academica to cooperate with each other. In Bahasa Indonesia, its called Gotong Royong. Like the logo which symbolizes peoples hands that holds one to another, making a square.
The near possible milestone to reach that goal is developing Linux distro to fit University or Campus needs and invite people to join in.
Kuliax, is one of the implementation for the first milestone, Linux distro for Information Technology, Electrical Engineering, Computer Science, or related department, but its likely can be used by some others departments as well. It tries to provide "base system" and applications suited to the curriculum/syllabus.
Applications installed:
- Desktop Environment: KDE 3.5.5
- Internet: Akregator, Gaim 2.0, KFTPGrabber 0.8.0, KMail, Iceweasel 2.0 (Firefox)
- Graphics: XMRM, Gwenview, ImageMagick, Inkscape 0.44.1, The Gimp 2.2.13, autotrace, gif2png, qiv, xaos, xfig
- Multimedia: XMMS 1.2.10+plugins, (K)MPlayer, VCD tools, Audacity, Kino 0.92+plugins, dvgrab, k3b, sox
- Office: OpenOffice.org 2.0.4
- File Reader: KPDF, KchmViewer
- Brainstorming: Freemind 0.8.0
- Dictionary: StarDict 2.4.8, English-Indonesian dictionary-database
- Printing: CUPS+driver
- Wireless: ndiswrapper, wireless-tools, wlassistant, wpasupplicant
- Statistics and Data Mining: R-base, RKWard
- Mathematics and Modelling: GNUPLOT, Octave
- Electrical/Electronics and Digital/Microprocessor: gnusim8085, gpsim, ktechlab, sdcc, tkgate, uisp
- Programming:
- LISP: CLISP 2.4.1
- PHP: PHP4 dan PHP5
- Assembler: nasm 0.98.38
- C/C++: GCC 4.1.1
- Haskell: Hugs 98.200503.08
- Java(tm): Sun Java 5.0
- Pascal: Freepascal 2.0.0
- Perl: Perl 5.8.8
- Prolog: SWI-Prolog 5.6.14
- Python: Python 2.4.4
- Scheme: Guile 1.6.8
- Smalltalk: GNU Smalltalk 2.1.8
- Tcl/Tk: Tcl/Tk 8.4
- Development: CVS, KDevelop 3.3.5 (IDE), Motor 3.4.0 (IDE), autoconf, automake, distcc, gdb, make, ncurses, whiptail 0.52.2
- Computer Organization and Architecture: GNU MIX Development Kit
- Operating System: UserModeLinux, VisualOS, qemu
- Computer Network: BIND9, DHCP3 server/client, arpwatch, bridge-utils, etherwake, fping, htb-gen, iftop, iproute, iptables, iptraf, krdc, krfb, mtr, netcat, netpipe-tcp, openssh, scli, shaper (CBQ), sipcalc, stunnel, tcpdump, tcpwrapper, telnet-ssl, vpnc, vsftpd
- Network Simulator: cnet
- Web Server: Apache 2.2.3
- Database: MySQL 5.0.27, SQLite 3.3.8, sqlitebrowser 1.3
- Security: GNUPG 1.4.5, dsniff, nmap, outguess
- Software Engineering: ArgoUML, GanttProject, sloccount
- Utilities: abakus, bc, ethtool, fdisk/cfdisk, knetworkconf, ksysguard, mc, qtparted, rsync, screen, synaptic, vrms
- E-Book: Operating System Book, created and maintained by Masyarakat Digital Gotong Royong (MDGR), in Bahasa Indonesia
Download (693.9MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1042 downloads
Vigyaan 1.0
Vigyaan is a Linux live CD for computational biology and chemistry. more>>
Vigyaan is an electronic workbench for bioinformatics, computational biology and computational chemistry.
It has been designed to meet the needs of both beginners and experts. VigyaanCD is a live Linux CD containing all the required software to boot the computer with ready to use modeling software. VigyaanCD v0.1 is based on KNOPPIX v3.3.
At present the following ready to use software comes on VigyaanCD: Artemis, Bioperl, BLAST (NCBI-tools), ClustalX, Cn3D, EMBOSS tools, Garlic, GROMACS, Ghemical, GNU R, Gnuplot, GIMP, ImageMagick, Jmol, MPQC, NJPlot, Open Babel, Octave, PSI3, PyMOL, Rasmol, Raster3D, SMILE, TINKER, XDrawChem, Xmgr and Xfig. GNU C/C++/Fortran compilers and additional Linux tools (such as ps2pdf) are also available.
VigyaanCD also provides tools required to compile and install other applications (from source). Therefore, making testing of Linux applications possible on computers with other OS.
Enhancements:
- This release is based on KNOPPIX 3.7.
- Most software packages have been updated and new applications added.
<<lessIt has been designed to meet the needs of both beginners and experts. VigyaanCD is a live Linux CD containing all the required software to boot the computer with ready to use modeling software. VigyaanCD v0.1 is based on KNOPPIX v3.3.
At present the following ready to use software comes on VigyaanCD: Artemis, Bioperl, BLAST (NCBI-tools), ClustalX, Cn3D, EMBOSS tools, Garlic, GROMACS, Ghemical, GNU R, Gnuplot, GIMP, ImageMagick, Jmol, MPQC, NJPlot, Open Babel, Octave, PSI3, PyMOL, Rasmol, Raster3D, SMILE, TINKER, XDrawChem, Xmgr and Xfig. GNU C/C++/Fortran compilers and additional Linux tools (such as ps2pdf) are also available.
VigyaanCD also provides tools required to compile and install other applications (from source). Therefore, making testing of Linux applications possible on computers with other OS.
Enhancements:
- This release is based on KNOPPIX 3.7.
- Most software packages have been updated and new applications added.
Download (638MB)
Added: 2005-09-07 License: Freely Distributable Price:
1509 downloads
Gretl 1.6.5
Gretl is a cross-platform software package for econometric analysis, written in the C programming language. more>>
Gretl is a cross-platform software package for econometric analysis, written in the C programming language. It is is free, open-source software.
You may redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation.
Main features:
- Easy intuitive interface (now in French, Italian, Spanish, Polish and German as well as English)
- A wide variety of least-squares based estimators, including two-stage least squares and nonlinear least squares
- Single commands to launch things like augmented Dickey-Fuller test, Chow test for structural stability, Vector Autoregressions, ARMA estimation
- Output models as LaTeX files, in tabular or equation format
- Integrated scripting language: enter commands either via the gui or via script
- Command loop structure for Monte Carlo simulations and iterative estimation procedures
- GUI controller for fine-tuning Gnuplot graphs
- Link to GNU R for further data analysis
<<lessYou may redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation.
Main features:
- Easy intuitive interface (now in French, Italian, Spanish, Polish and German as well as English)
- A wide variety of least-squares based estimators, including two-stage least squares and nonlinear least squares
- Single commands to launch things like augmented Dickey-Fuller test, Chow test for structural stability, Vector Autoregressions, ARMA estimation
- Output models as LaTeX files, in tabular or equation format
- Integrated scripting language: enter commands either via the gui or via script
- Command loop structure for Monte Carlo simulations and iterative estimation procedures
- GUI controller for fine-tuning Gnuplot graphs
- Link to GNU R for further data analysis
Download (3.0MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
897 downloads
pstoedit 3.43
pstoedit converts Postscript and PDF files to other vector graphic formats so that they can be edited graphically. more>>
pstoedit program converts Postscript and PDF files to other vector graphic formats so that they can be edited graphically.
Supported Formats
Currently pstoedit can generate the following major formats:
- Tgif .obj format (for tgif version >= 3)
- .fig format for xfig
- pdf - Adobes Portable Document Format
- gnuplot format
- Flattened PostScript (with or without Bezier curves)
- DXF - CAD exchange format
- LWO - LightWave 3D
- RIB - RenderMan
- RPL - Real3D
- Java 1 or Java 2 applet
- Idraw format (in fact a special form of EPS that idraw can read)
- Tcl/Tk
- HPGL
- AI (Adobe Illustrator) (based on ps2ai.ps - not a real pstoedit driver - see notes below and manual)
- Windows Meta Files (WMF) (Windows 9x/NT only)
- Enhanced Windows Meta Files (EMF) (Windows 9x/NT only)
- OS/2 meta files (OS/2 only)
- PIC format for troff/groff
- MetaPost format for usage with TeX/LaTeX
- LaTeX2e picture
- Kontour
- GNU Metafile (plotutils / libplot)
- Skencil( http://www.skencil.org )
- Mathematica
- via ImageMagick to any format supported by ImageMagick
- SWF
Enhancements:
- Several usability improvements were introduced.
- Secure versions of several functions are used where possible.
- The code was cleaned up and a driver was included for the OpenOffice metafile format.
<<lessSupported Formats
Currently pstoedit can generate the following major formats:
- Tgif .obj format (for tgif version >= 3)
- .fig format for xfig
- pdf - Adobes Portable Document Format
- gnuplot format
- Flattened PostScript (with or without Bezier curves)
- DXF - CAD exchange format
- LWO - LightWave 3D
- RIB - RenderMan
- RPL - Real3D
- Java 1 or Java 2 applet
- Idraw format (in fact a special form of EPS that idraw can read)
- Tcl/Tk
- HPGL
- AI (Adobe Illustrator) (based on ps2ai.ps - not a real pstoedit driver - see notes below and manual)
- Windows Meta Files (WMF) (Windows 9x/NT only)
- Enhanced Windows Meta Files (EMF) (Windows 9x/NT only)
- OS/2 meta files (OS/2 only)
- PIC format for troff/groff
- MetaPost format for usage with TeX/LaTeX
- LaTeX2e picture
- Kontour
- GNU Metafile (plotutils / libplot)
- Skencil( http://www.skencil.org )
- Mathematica
- via ImageMagick to any format supported by ImageMagick
- SWF
Enhancements:
- Several usability improvements were introduced.
- Secure versions of several functions are used where possible.
- The code was cleaned up and a driver was included for the OpenOffice metafile format.
Download (0.82MB)
Added: 2006-03-07 License: GPL (GNU General Public License) Price:
1337 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above gnuplot search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed