scientific
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 155
Scientific Linux 5.0
Scientific Linux is a recompiled Red Hat Enterprise Linux put together by various labs and universities around the world. more>>
Scientific Linux is a Linux release put together by various labs and universities around the world. Scientific Linuxs primary purpose is to reduce duplicated effort of the labs, and to have a common install base for the various experimentors.
The base Scientific Linux distribution is basically Enterprise Linux, recompiled from source.
Our main goal for the base distribution is to have everything compatible with Enterprise, with only a few minor additions or changes. An example of of items that were added are Pine, and OpenAFS.
Enhancements:
- Scientific Linux 5.0 i386 is now available." Some of the extra applications include: "CFITSIO - a library of C and FORTRAN subroutines for reading and writing data files in FITS; FUSE - an implementation of a fully functional file system in a userspace program; Graphviz - graph visualization tools; IceWM - a lightweight window manager; Intel wireless firmware, MadWiFi and NdisWrapper; Java; MP3 support; OpenAFS; R - a language and environment for statistical computing and graphics....
<<lessThe base Scientific Linux distribution is basically Enterprise Linux, recompiled from source.
Our main goal for the base distribution is to have everything compatible with Enterprise, with only a few minor additions or changes. An example of of items that were added are Pine, and OpenAFS.
Enhancements:
- Scientific Linux 5.0 i386 is now available." Some of the extra applications include: "CFITSIO - a library of C and FORTRAN subroutines for reading and writing data files in FITS; FUSE - an implementation of a fully functional file system in a userspace program; Graphviz - graph visualization tools; IceWM - a lightweight window manager; Intel wireless firmware, MadWiFi and NdisWrapper; Java; MP3 support; OpenAFS; R - a language and environment for statistical computing and graphics....
Download (608.3MB)
Added: 2007-05-07 License: GPL (GNU General Public License) Price:
903 downloads
Other version of Scientific Linux
License:GPL (GNU General Public License)
Chart::Scientific 0.16
Chart::Scientific is a Perl module that can generate simple 2-D scientific plots with logging, errbars, etc. more>>
Chart::Scientific is a Perl module that can generate simple 2-D scientific plots with logging, errbars, etc.
SYNOPSIS
Procedural interface
use Chart::Scientific qw/make_plot/;
make_plot ( x_data => @x_values, y_data => @yvalues );
The subroutine make_plot creates a Chart::Scientific object passing along every argument it was given. See OPTIONS below for a full list of allowed arguments.
Object Oriented interface
Plot data from two arrays:
use Chart::Scientific;
my $plt = Chart::Scientific->new (
x_data => @x_values,
y_data => @y_values,
);
$plt->plot ();
or piddles:
use Chart::Scientific;
my $plt = Chart::Scientific->new (
x_data => $x_pdl,
y_data => $y_pdl,
);
$plt->plot ();
Plot data from an arbitrarily-delimitted file (the data in columns "vel" and "acc" vs the data in the column "time", with errorbars from the columns "vel_err" and "acc_err"):
my $plt = Chart::Scientific->new (
filename => data.tab-separated,
split => t,
x_col => time,
y_col => vel,acc,
err_col => vel_err,acc_err,
x_label => "time",
y_label => "velocity and acceleration",
);
$plt->plot ();
Plot data in arrays:
my $plt = Chart::Scientific->new (
x_data => @height,
y_data => [ @weight, @body_mass_index ],
);
$plt->plot ();
Plot data in pdls:
my $plt = Chart::Scientific->new (
x_data => $pdl_x,
y_data => [ $pdl_y1, $pdl_y2 ],
);
$plt->plot ();
Plot the above data to a file:
my $plt = Chart::Scientific->new (
x_data => $pdl_x,
y_data => [ $pdl_y1, $pdl_y2 ],
device => myplot.ps/cps,
);
$plt->plot ();
Generate multiple plots with the same object:
my @x1 = 10..19;
my @y1 = 20..29;
my @y2 = 50..59;
my $plt = Chart::Scientific->new (
x_data => @x1,
y_data => @y1,
x_label => "test x",
y_label => "test y",
);
$plt->setvars ( title => testa, device => 1/xs );
$plt->plot ();
$plt->setvars ( title => testb, device => 2/xs );
$plt->plot ();
<<lessSYNOPSIS
Procedural interface
use Chart::Scientific qw/make_plot/;
make_plot ( x_data => @x_values, y_data => @yvalues );
The subroutine make_plot creates a Chart::Scientific object passing along every argument it was given. See OPTIONS below for a full list of allowed arguments.
Object Oriented interface
Plot data from two arrays:
use Chart::Scientific;
my $plt = Chart::Scientific->new (
x_data => @x_values,
y_data => @y_values,
);
$plt->plot ();
or piddles:
use Chart::Scientific;
my $plt = Chart::Scientific->new (
x_data => $x_pdl,
y_data => $y_pdl,
);
$plt->plot ();
Plot data from an arbitrarily-delimitted file (the data in columns "vel" and "acc" vs the data in the column "time", with errorbars from the columns "vel_err" and "acc_err"):
my $plt = Chart::Scientific->new (
filename => data.tab-separated,
split => t,
x_col => time,
y_col => vel,acc,
err_col => vel_err,acc_err,
x_label => "time",
y_label => "velocity and acceleration",
);
$plt->plot ();
Plot data in arrays:
my $plt = Chart::Scientific->new (
x_data => @height,
y_data => [ @weight, @body_mass_index ],
);
$plt->plot ();
Plot data in pdls:
my $plt = Chart::Scientific->new (
x_data => $pdl_x,
y_data => [ $pdl_y1, $pdl_y2 ],
);
$plt->plot ();
Plot the above data to a file:
my $plt = Chart::Scientific->new (
x_data => $pdl_x,
y_data => [ $pdl_y1, $pdl_y2 ],
device => myplot.ps/cps,
);
$plt->plot ();
Generate multiple plots with the same object:
my @x1 = 10..19;
my @y1 = 20..29;
my @y2 = 50..59;
my $plt = Chart::Scientific->new (
x_data => @x1,
y_data => @y1,
x_label => "test x",
y_label => "test y",
);
$plt->setvars ( title => testa, device => 1/xs );
$plt->plot ();
$plt->setvars ( title => testb, device => 2/xs );
$plt->plot ();
Download (0.016MB)
Added: 2007-04-24 License: Perl Artistic License Price:
913 downloads
GNU Scientific Library 1.9
The GNU Scientific Library (GSL) is a collection of routines for numerical computing. more>>
The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. It is free software under the GNU General Public License.
GNU Scientific Library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. There are over 1000 functions in total with an extensive test suite.
Installation Instructions:
GSL follows the standard GNU installation procedure. To compile GSL you will need an ANSI C-compiler. After unpacking the distribution the Makefiles can be prepared using the configure command,
./configure
You can then build the library by typing,
make
Both static and shared versions of the libraries will be compiled by default. Compilation of shared libraries can be turned off by specifying the `--disable-shared option to `configure, e.g.
./configure --disable-shared
If you encounter problems building the library try using the above option, because some platforms do not support shared libraries.
For notes about problems with specific platforms and compilers see the next section of this file (below).
An extensive test suite is available. After compiling the library with "make", it can be invoked with "make check" at the top level. The test output should be directed to a file rather than a terminal, with the command,
make check > log 2>&1
to allow any errors to be examined in detail. By default, only test failures are shown. To see the complete output, set the environment variable GSL_TEST_VERBOSE=1.
If you run the tests and get some failures, please see the notes on platform specific problems below. If you find failures that are not mentioned, please report them to bug-gsl@gnu.org.
The library can be installed using the command,
make install
The default installation directory prefix is /usr/local. Consult the "Further Information" section below for instructions on installing the library in another location or changing other default compilation options.
Enhancements:
- This release adds new support for non-symmetric eigensystems, basis splines, and Mathieu functions.
- It has fixes for all bugs reported since the last release.
<<lessGNU Scientific Library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. There are over 1000 functions in total with an extensive test suite.
Installation Instructions:
GSL follows the standard GNU installation procedure. To compile GSL you will need an ANSI C-compiler. After unpacking the distribution the Makefiles can be prepared using the configure command,
./configure
You can then build the library by typing,
make
Both static and shared versions of the libraries will be compiled by default. Compilation of shared libraries can be turned off by specifying the `--disable-shared option to `configure, e.g.
./configure --disable-shared
If you encounter problems building the library try using the above option, because some platforms do not support shared libraries.
For notes about problems with specific platforms and compilers see the next section of this file (below).
An extensive test suite is available. After compiling the library with "make", it can be invoked with "make check" at the top level. The test output should be directed to a file rather than a terminal, with the command,
make check > log 2>&1
to allow any errors to be examined in detail. By default, only test failures are shown. To see the complete output, set the environment variable GSL_TEST_VERBOSE=1.
If you run the tests and get some failures, please see the notes on platform specific problems below. If you find failures that are not mentioned, please report them to bug-gsl@gnu.org.
The library can be installed using the command,
make install
The default installation directory prefix is /usr/local. Consult the "Further Information" section below for instructions on installing the library in another location or changing other default compilation options.
Enhancements:
- This release adds new support for non-symmetric eigensystems, basis splines, and Mathieu functions.
- It has fixes for all bugs reported since the last release.
Download (2.3MB)
Added: 2007-02-22 License: GPL (GNU General Public License) Price:
977 downloads
Scientific Linux 5.0 Live CD/DVD
Scientific Linux is a Linux release put together by Fermilab, CERN, and various other labs and universities around the world. more>>
Scientific Linux is a Linux release put together by Fermilab, CERN, and various other labs and universities around the world. Its primary purpose is to reduce duplicated effort of the labs, and to have a common install base for the various experimenters.
The base SL distribution is basically Enterprise Linux, recompiled from source.
Our main goal for the base distribution is to have everything compatible with Enterprise, with only a few minor additions or changes. An example of of items that were added are Pine, and OpenAFS.
Our secondary goal is to allow easy customization for a site, without disturbing the Scientific Linux base. The various labs are able to add their own modifications to their own site areas. By the magic of scripts, and the anaconda installer, each site is to be able to create their own distributions with minimal effort. Or, if a users wishes, they can simply install the base SL release.
The Scientific Linux project, which rebuilds source packages for Red Hat Enterprise Linux (RHEL) into a complete RHEL clone, has released a live CD/DVD edition of their latest version for the i386 and x86_64 architectures:
"The Scientific Linux Live CD/DVD is a bootable CD/DVD that runs Linux directly from CD/DVD without installing. It is based on Scientific Linux 4 It uses Unification File System (Unionfs), allowing read-only file system to behave as a writable one and SquashFS providing on-the-fly decompression that allows to store 2GB of software on a normal CD-ROM. The Live CD/DVD was built using modified scripts from Linux-Live."
Enhancements:
- Scientific Linux Live CD 5.0 has been released for i386 and x86_64 architectures. The Scientific Linux Live CD is a bootable CD that runs Scientific Linux directly from CD without installing. New feature: Live CD can be installed to local hard disk. Major software updates compared to Scientific Linux 4 Live CD: Linux kernel 2.6.18, OpenAFS client 1.4.4, X.Org 7.1, 3D desktop with Compiz and AIGLX, GNOME 2.16.0, OpenOffice.org 2.0.4, Firefox 1.5. Additional features: can be installed on USB key; can be mounted over NFS (as diskless client).
<<lessThe base SL distribution is basically Enterprise Linux, recompiled from source.
Our main goal for the base distribution is to have everything compatible with Enterprise, with only a few minor additions or changes. An example of of items that were added are Pine, and OpenAFS.
Our secondary goal is to allow easy customization for a site, without disturbing the Scientific Linux base. The various labs are able to add their own modifications to their own site areas. By the magic of scripts, and the anaconda installer, each site is to be able to create their own distributions with minimal effort. Or, if a users wishes, they can simply install the base SL release.
The Scientific Linux project, which rebuilds source packages for Red Hat Enterprise Linux (RHEL) into a complete RHEL clone, has released a live CD/DVD edition of their latest version for the i386 and x86_64 architectures:
"The Scientific Linux Live CD/DVD is a bootable CD/DVD that runs Linux directly from CD/DVD without installing. It is based on Scientific Linux 4 It uses Unification File System (Unionfs), allowing read-only file system to behave as a writable one and SquashFS providing on-the-fly decompression that allows to store 2GB of software on a normal CD-ROM. The Live CD/DVD was built using modified scripts from Linux-Live."
Enhancements:
- Scientific Linux Live CD 5.0 has been released for i386 and x86_64 architectures. The Scientific Linux Live CD is a bootable CD that runs Scientific Linux directly from CD without installing. New feature: Live CD can be installed to local hard disk. Major software updates compared to Scientific Linux 4 Live CD: Linux kernel 2.6.18, OpenAFS client 1.4.4, X.Org 7.1, 3D desktop with Compiz and AIGLX, GNOME 2.16.0, OpenOffice.org 2.0.4, Firefox 1.5. Additional features: can be installed on USB key; can be mounted over NFS (as diskless client).
Download (693MB)
Added: 2007-05-26 License: GPL (GNU General Public License) Price:
903 downloads
Ksetiwatch 3.0.1
Ksetiwatch is a SETI@home monitor and work unit manager. more>>
Ksetiwatch is a monitoring tool for the Seti@home distributed computing project, which searches for signals of extraterrestrial life. It displays the state of the Seti@home client(s) running on your computer or in your local network, and logs/manages completed work units and interesting signals.
In addition, Ksetiwatch features a skymap that displays all work units processed, a graphical display of scientific data (gaussians, pulses, and triplets), a dock icon with detailed status information about a client, the option to start/stop the SETI@home clients, and much more.
SetiContainer is a C++ class that allows convenient access to all the information in the state files of a SETI@home client. It periodically examines these files and updates its own data members accordingly.
Other programs can use this class to extract information about the progress of the client, the signals found, or the work unit being processed. Additional functions offer more advanced info (like the amount of TeraFlops in a work unit, estimated time of completion, etc.). The SetiContainer class is based on the Qt toolkit, and extensively uses Qts Signal/Slot .
<<lessIn addition, Ksetiwatch features a skymap that displays all work units processed, a graphical display of scientific data (gaussians, pulses, and triplets), a dock icon with detailed status information about a client, the option to start/stop the SETI@home clients, and much more.
SetiContainer is a C++ class that allows convenient access to all the information in the state files of a SETI@home client. It periodically examines these files and updates its own data members accordingly.
Other programs can use this class to extract information about the progress of the client, the signals found, or the work unit being processed. Additional functions offer more advanced info (like the amount of TeraFlops in a work unit, estimated time of completion, etc.). The SetiContainer class is based on the Qt toolkit, and extensively uses Qts Signal/Slot .
Download (1.1MB)
Added: 2005-06-06 License: GPL (GNU General Public License) Price:
1600 downloads
Phoenix Live CD 2.2.0
Phoenix Live CD is a Physics with Homemade Equipment and Innovative Experiments Live Linux distribution. more>>
Phoenix Live CD is a Physics with Homemade Equipment and Innovative Experiments Live Linux distribution. Booting from the Live CD, based on SLAX, starts a GNU/Linux operating system with several software development tools and scientific computation packages pre-installed.
Put the CD in the drive and reboot the machine. Follow the instructions displayed to start the graphics mode. Hard disk of your PC is not used by default but it can be enabled for saving experimental data.
If you have the Phoenix Interface hardware connected, you can run the phoenix programs from the main menu. You can also write and run your own programs. Compilers and graphics libraries required for developing programs are part of the CD. It is also possible to browse this CD by opening the file index.html.
<<lessPut the CD in the drive and reboot the machine. Follow the instructions displayed to start the graphics mode. Hard disk of your PC is not used by default but it can be enabled for saving experimental data.
If you have the Phoenix Interface hardware connected, you can run the phoenix programs from the main menu. You can also write and run your own programs. Compilers and graphics libraries required for developing programs are part of the CD. It is also possible to browse this CD by opening the file index.html.
Download (373.7MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
923 downloads
SWT component for OpenSceneGraph 0.1
SWT component for OpenSceneGraph is a SWT component that allows you to display an OpenSceneGraph. more>>
SWT component for OpenSceneGraph is a SWT component that allows you to display an OpenSceneGraph.
SWT component for OpenSceneGraph is know as libosgswt. libosgswt is the initial component included inside the josgviewer set of libraries.
The OpenSceneGraph is an open source high peformance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization and modelling. Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris and FreeBSD operating systems.
<<lessSWT component for OpenSceneGraph is know as libosgswt. libosgswt is the initial component included inside the josgviewer set of libraries.
The OpenSceneGraph is an open source high peformance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scientific visualization and modelling. Written entirely in Standard C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris and FreeBSD operating systems.
Download (0.017MB)
Added: 2006-02-08 License: LGPL (GNU Lesser General Public License) Price:
1353 downloads
BOINC 5.9.5
BOINC lets you donate computing power to scientific research projects. more>>
BOINC project lets you donate computing power to scientific research projects.
Some projects are:
- Climateprediction.net: study climate change
- Einstein@home: search for gravitational signals emitted by pulsars
- LHC@home: improve the design of the CERN LHC particle accelerator
- Predictor@home: investigate protein-related diseases
- Rosetta@home: help researchers develop cures for human diseases
- SETI@home: Look for radio evidence of extraterrestrial life
- Cell Computing biomedical research (Japanese; requires nonstandard client software)
- World Community Grid: advance our knowledge of human disease. (Requires 5.2.1 or greater)
<<lessSome projects are:
- Climateprediction.net: study climate change
- Einstein@home: search for gravitational signals emitted by pulsars
- LHC@home: improve the design of the CERN LHC particle accelerator
- Predictor@home: investigate protein-related diseases
- Rosetta@home: help researchers develop cures for human diseases
- SETI@home: Look for radio evidence of extraterrestrial life
- Cell Computing biomedical research (Japanese; requires nonstandard client software)
- World Community Grid: advance our knowledge of human disease. (Requires 5.2.1 or greater)
Download (3.5MB)
Added: 2007-05-03 License: GPL (GNU General Public License) Price:
917 downloads
Scilab 4.1.1
Scilab project is a is a numerical computation system similiar to Matlab or Simulink. more>>
Scilab project is a is a numerical computation system similiar to Matlab or Simulink.
Scilab is an open source numerical computation platform developed by a consortium managed by INRIA (French National Institute for Research in Computer Science and Control) which, to date, gathers 23 industrial companies, research centers and engineer schools. It provides a powerful environment for the development of scientific applications and for engineering. Each month, nearly 20,000 remote downloads of
Scilab are registered from the Internet site of the Consortium, which takes Scilab one of the most valued pieces of open source scientific oftware.
Mandriva, whose membership to the Scilab Consortium is pending, and he Scilab Consortium agreed to integrate Scilab into the new Mandriva Linux 2007 distribution (Discovery, Powerpack and Powerpack+). The development teams of Scilab and Mandriva cooperated in the integration f the latest version of Scilab (v4.0, announced in February 2006 and since downloaded more than 150,000 times) into this new Mandriva release. It is planned to continue this arrangement for future versions of Mandriva Linux and of Scilab. In addition, Scilab will also be integrated into Corporate Desktop 4, the Mandriva Linux workstation for businesses.
About The Scilab Consortium
The Scilab software is, since May 2003, produced by a consortium, managed by INRIA, which, to date, has 23* industrial companies, research centers and engineering schools as members. The creation of the Scilab Consortium reflects a will to produce an open source numerical computation platform of high quality. Scilab is developed by a dedicated and permanent team hosted by INRIA. Moreover, its open source nature allows external contributions and thus a level of know-how in the field of scientific computation can be reached which a single company could otherwise claim only with difficulty. Nearly 20,000 remote downloads of the Scilab software are carried out each month from the official site of the Consortium to the benefit of European and foreign companies, universities and research centers. The
membership of the Scilab Consortium is in constant growth.
<<lessScilab is an open source numerical computation platform developed by a consortium managed by INRIA (French National Institute for Research in Computer Science and Control) which, to date, gathers 23 industrial companies, research centers and engineer schools. It provides a powerful environment for the development of scientific applications and for engineering. Each month, nearly 20,000 remote downloads of
Scilab are registered from the Internet site of the Consortium, which takes Scilab one of the most valued pieces of open source scientific oftware.
Mandriva, whose membership to the Scilab Consortium is pending, and he Scilab Consortium agreed to integrate Scilab into the new Mandriva Linux 2007 distribution (Discovery, Powerpack and Powerpack+). The development teams of Scilab and Mandriva cooperated in the integration f the latest version of Scilab (v4.0, announced in February 2006 and since downloaded more than 150,000 times) into this new Mandriva release. It is planned to continue this arrangement for future versions of Mandriva Linux and of Scilab. In addition, Scilab will also be integrated into Corporate Desktop 4, the Mandriva Linux workstation for businesses.
About The Scilab Consortium
The Scilab software is, since May 2003, produced by a consortium, managed by INRIA, which, to date, has 23* industrial companies, research centers and engineering schools as members. The creation of the Scilab Consortium reflects a will to produce an open source numerical computation platform of high quality. Scilab is developed by a dedicated and permanent team hosted by INRIA. Moreover, its open source nature allows external contributions and thus a level of know-how in the field of scientific computation can be reached which a single company could otherwise claim only with difficulty. Nearly 20,000 remote downloads of the Scilab software are carried out each month from the official site of the Consortium to the benefit of European and foreign companies, universities and research centers. The
membership of the Scilab Consortium is in constant growth.
Download (12.0MB)
Added: 2007-08-13 License: Other/Proprietary License with Source Price:
535 downloads
Houdinix 0.1
Houdinix is a GNU/Linux live-cd made for young computer science students. more>>
Houdinix is a GNU/Linux live-cd made for young computer science students of our university, its a simple and user-friendly distribution, containing all tools needed by a beginner.
It contains more than 2 gigabytes of data (on a single 700Mb CD), and can be installed very easily on a local hard drive with our installer, Houdinstall.
Main features:
- Kernel 2.4.24houdinix.
- Compressed file system Squashfs: 2.4Gb of data.
- KDE 3.2 graphic environment.
- Compilers and interpreters for the followings languages : Basic, C, C++, Caml (ocaml), Cobol, Delphi, Fortran, Guile, Java (JDK1.4.2), Lisp (GNU clisp), Pascal, Perl (modules Gtk, Tk, Mail, ...), Prolog (gplc, gprolog), Python, Scheme (umb-scheme), Smalltalk, Tcl.
- Scientific tools : gnuplot, scilab, mupad.
- OpenOffice.org 1.1.3, Gimp 2
- Network support and tools : telnet, ssh, nmap, nslookup, etc...
- Internet tools : Firefox, Thunderbird, Kmail, Kopete, Konqueror, etc...
- File systems recognized on local disks: ext2, ext3, vfat, iso9660 (ro), squashfs (ro), jfs, minix, ufs, reiserfs, ntfs (ro).
- Installation on hard disk with Houdinstall.
- Swap detection with our software Houdiswap.
<<lessIt contains more than 2 gigabytes of data (on a single 700Mb CD), and can be installed very easily on a local hard drive with our installer, Houdinstall.
Main features:
- Kernel 2.4.24houdinix.
- Compressed file system Squashfs: 2.4Gb of data.
- KDE 3.2 graphic environment.
- Compilers and interpreters for the followings languages : Basic, C, C++, Caml (ocaml), Cobol, Delphi, Fortran, Guile, Java (JDK1.4.2), Lisp (GNU clisp), Pascal, Perl (modules Gtk, Tk, Mail, ...), Prolog (gplc, gprolog), Python, Scheme (umb-scheme), Smalltalk, Tcl.
- Scientific tools : gnuplot, scilab, mupad.
- OpenOffice.org 1.1.3, Gimp 2
- Network support and tools : telnet, ssh, nmap, nslookup, etc...
- Internet tools : Firefox, Thunderbird, Kmail, Kopete, Konqueror, etc...
- File systems recognized on local disks: ext2, ext3, vfat, iso9660 (ro), squashfs (ro), jfs, minix, ufs, reiserfs, ntfs (ro).
- Installation on hard disk with Houdinstall.
- Swap detection with our software Houdiswap.
Download (700MB)
Added: 2005-08-31 License: GPL (GNU General Public License) Price:
1515 downloads
Extcalc 0.8.5
Extcalc is a scientific graphic calculator for Linux. more>>
Extcalc is a scientific graphic calculator for Linux. Extcalc is designed to use the full performance of a modern Computer for mathematical calculations. You can input difficult calculations on the Qt-based user interface and it is also possible to draw and analyse graphs with OpenGL.
Most scientific functions like roots, trigonometric functions, logarithms, integration add differential calculation can be used. It is also programmable. You can write and execute scripts with a C-like scripting language.
Enhancements:
- This release includes tools for statistical analysis and for the approximation of mathematical functions.
- All major features are now included.
<<lessMost scientific functions like roots, trigonometric functions, logarithms, integration add differential calculation can be used. It is also programmable. You can write and execute scripts with a C-like scripting language.
Enhancements:
- This release includes tools for statistical analysis and for the approximation of mathematical functions.
- All major features are now included.
Download (MB)
Added: 2007-06-11 License: GPL (GNU General Public License) Price:
866 downloads
OSGEdit 0.6.1
OSGEdit is an editor of 3D scenes for scientific applications and games, using the OpenSceneGraph (OSG) library. more>>
OSGEdit is an editor of 3D scenes for scientific applications and games, using the OpenSceneGraph (OSG) library.
OSGEdit project allows easy scenegraph editing for anyone using OpenScenegraph in some 3D project.
OpenSceneGraph is a free (LGPL) library that implements professional 3D scenegraph management, usefull for games, scientific applications, real-time simulations, etc.
Take in mind that Its only a scene editor/composer, not a modeller. You can use many programs (like Blender) to model your objects and import them into OSGEdit to compose a complex OSG scene for your application with switches lods, etc.
Main features:
- Good design techniques (uses a lot of design patterns)
- wysiwyg: Its rendering all the time using OSG, so what you see on the screen is what you get when you open the scene with osgviewer or your own app.
- You can see a tree representing the graph where you can select nodes for all the operations. This tree is really a graph, the same node can hang in two different branches, and its a shared node, not a copy, changes on the node in one branch affect to the same node in the other branch.
- Each node type has a properties dialog integrated in the window (most of them are already supported).
- Of course, you can also manipulate transforms visually, there are tools to move, scale, and rotate transform nodes visually with the mouse.
- All the operations except for the new/open/save and zoom changes, can be undo and redo without limit.
- You can create new group (Group/Transform/Switch/LOD) nodes (It doesnt allow for creating of geodes, its not a modeller, only a scene composer).
- For these files that only contain one geode, you can also insert a Transform node as a parent of the selected node, even if its the root node.
- You can open all the formats supported by OSG and also save all the formats supported for writing by OSG.
- There is a tool for merging in files, you can add child nodes that are readed from file (this is very important if you are going to compose a complex scene from several models.
- Nodes can be copied, pasted into group nodes, and even cutted.
<<lessOSGEdit project allows easy scenegraph editing for anyone using OpenScenegraph in some 3D project.
OpenSceneGraph is a free (LGPL) library that implements professional 3D scenegraph management, usefull for games, scientific applications, real-time simulations, etc.
Take in mind that Its only a scene editor/composer, not a modeller. You can use many programs (like Blender) to model your objects and import them into OSGEdit to compose a complex OSG scene for your application with switches lods, etc.
Main features:
- Good design techniques (uses a lot of design patterns)
- wysiwyg: Its rendering all the time using OSG, so what you see on the screen is what you get when you open the scene with osgviewer or your own app.
- You can see a tree representing the graph where you can select nodes for all the operations. This tree is really a graph, the same node can hang in two different branches, and its a shared node, not a copy, changes on the node in one branch affect to the same node in the other branch.
- Each node type has a properties dialog integrated in the window (most of them are already supported).
- Of course, you can also manipulate transforms visually, there are tools to move, scale, and rotate transform nodes visually with the mouse.
- All the operations except for the new/open/save and zoom changes, can be undo and redo without limit.
- You can create new group (Group/Transform/Switch/LOD) nodes (It doesnt allow for creating of geodes, its not a modeller, only a scene composer).
- For these files that only contain one geode, you can also insert a Transform node as a parent of the selected node, even if its the root node.
- You can open all the formats supported by OSG and also save all the formats supported for writing by OSG.
- There is a tool for merging in files, you can add child nodes that are readed from file (this is very important if you are going to compose a complex scene from several models.
- Nodes can be copied, pasted into group nodes, and even cutted.
Download (0.46MB)
Added: 2006-01-29 License: GPL (GNU General Public License) Price:
1372 downloads
Unicap 0.2.13
Unicap provides a uniform API for all kinds of video capture devices. more>>
Unicap provides a uniform API for all kinds of video capture devices. Unicap was designed keeping simplicity in mind so that developers can focus on their actual image processing tasks when using video capture devices.
Device drivers are accessed via a plugin mechanism. Support for new devices can be added on the fly, without recompilation of the library. The API remains the same for each device so that an application using unicap immediately works with all devices supported by unicap.
In the near future, transparent network support will be available allowing applications to use devices connected to a remote computer just as if they were local.
Device support
- IIDC 1394 Cameras: Support for industrial/scientific IEEE1394 cameras.
- DFG/1394
- video-4-linux: Support for many devices conforming to the ( old ) video-4-linux definition
- video-4-linux 2: Support for many devices conforming to the current video-4-linux II definition
Enhancements:
- This version adds some more color space conversion routines and some UI improvements.
<<lessDevice drivers are accessed via a plugin mechanism. Support for new devices can be added on the fly, without recompilation of the library. The API remains the same for each device so that an application using unicap immediately works with all devices supported by unicap.
In the near future, transparent network support will be available allowing applications to use devices connected to a remote computer just as if they were local.
Device support
- IIDC 1394 Cameras: Support for industrial/scientific IEEE1394 cameras.
- DFG/1394
- video-4-linux: Support for many devices conforming to the ( old ) video-4-linux definition
- video-4-linux 2: Support for many devices conforming to the current video-4-linux II definition
Enhancements:
- This version adds some more color space conversion routines and some UI improvements.
Download (0.70MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
811 downloads
Common Data Format 3.1
Common Data Format is a self-describing data abstraction for the storage and manipulation of multidimensional data. more>>
Common Data Format is a self-describing data abstraction for the storage and manipulation of multidimensional data in a platform- and discipline-independent fashion.
It consists of a scientific data management package (known as the "CDF Library") that allows programmers and application developers to manage and manipulate scalar, vector, and multi-dimensional data arrays.
Enhancements:
- Adds new sets of APIs to allow Standard Interface to interact with zVariables and other CDF-related information.
- Adds MingW and FreeBSD ports.
- Adds support for Intel C++ and Fortran for Linux.
- Adds the ability to create legacy CDF 2.7 files.
- Fixes a bug that prevented directories from having .cdf or .skt extensions.
<<lessIt consists of a scientific data management package (known as the "CDF Library") that allows programmers and application developers to manage and manipulate scalar, vector, and multi-dimensional data arrays.
Enhancements:
- Adds new sets of APIs to allow Standard Interface to interact with zVariables and other CDF-related information.
- Adds MingW and FreeBSD ports.
- Adds support for Intel C++ and Fortran for Linux.
- Adds the ability to create legacy CDF 2.7 files.
- Fixes a bug that prevented directories from having .cdf or .skt extensions.
Download (1.5MB)
Added: 2006-03-13 License: Public Domain Price:
1320 downloads
Computation Job Management 0.6
Computation Job Management (jobman in short) is a program that calls executables according to a given program flow. more>>
Computation Job Management (jobman in short) is a program that calls executables according to a given program flow. Each executable is run in a separate process. It is useful when a project needs to carry out a series of calculations that are performed by software written in different languages or supplied by third parties, but invoking individual programs manually is error prone and hard to manage.
The various individual programs dont communicate with each other except via persistent storage. This is especially the case for some scientific computing, quantitative finance, and prototyped programming.
Enhancements:
- A job can output a status string indicating to skip other sibling jobs.
- Fixed a number of bugs.
- Mark the program in beta status as it has been used to manage jobs completed in days.
<<lessThe various individual programs dont communicate with each other except via persistent storage. This is especially the case for some scientific computing, quantitative finance, and prototyped programming.
Enhancements:
- A job can output a status string indicating to skip other sibling jobs.
- Fixed a number of bugs.
- Mark the program in beta status as it has been used to manage jobs completed in days.
Download (0.14MB)
Added: 2007-04-24 License: LGPL (GNU Lesser General Public License) Price:
915 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 scientific 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