Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.142.849 Times

Pdl Viewer freeware
Filter: All | Freeware | Demo
 

Pdl Viewer

< 1 2 3 4 5 > 
Added: September 08, 2013 | Visits: 1.084

Pipe Viewer Pipe Viewer is a terminal-based tool for monitoring the progress of data through a pipeline. It can be inserted into any normal pipeline between two processes to give a visual indication of data transfer speed, ETA, that sort of thing.



Platforms: *nix

License: Freeware Size: 81.92 KB Download (117): Pipe Viewer Download

Added: June 13, 2010 | Visits: 938

PDL::Parallel::MPI PDL::Parallel::MPI Perl module contains routines to allow PDL objects to be moved around on parallel systems using the MPI library. SYNOPSIS use PDL; use PDL::Parallel::MPI; mpirun(2); MPI_Init(); $rank = get_rank(); $a=$rank * ones(2); print "my rank is $rank and $a is $an";...





Platforms: *nix

License: Freeware Size: 133.12 KB Download (103): PDL::Parallel::MPI Download

Added: June 25, 2010 | Visits: 1.321

frob 3D viewer frob 3D viewer project is a 3D object point/wireframe/polygon viewer - called frob3dv for lack of a better name. I wrote this version mainly to learn c++. Also it was the first program I wrote after I got a PC (and put linux on it), but it has a long history. Many years ago I wrote a few stacks...


Platforms: *nix

License: Freeware Size: 51.2 KB Download (130): frob 3D viewer Download

Added: October 19, 2010 | Visits: 659

PDL::GSL::RNG PDL::GSL::RNG is a PDL interface to RNG and randist routines in GSL. SYNOPSIS use PDL; use PDL::GSL::RNG; $rng = PDL::GSL::RNG->new(taus); $rng->set_seed(time()); $a=zeroes(5,5,5) $rng->get_uniform($a); # inplace $b=$rng->get_uniform(3,4,5); # creates new pdl.


Platforms: *nix

License: Freeware Size: 2.1 MB Download (104): PDL::GSL::RNG Download

Added: October 15, 2010 | Visits: 977

PDL::Fit::LM PDL::Fit::LM is a Levenber-Marquardt fitting routine for PDL. Currently, only Levenberg-Marquardt fitting is implemented. Other procedures should be added as required. For a fairly concise overview on fitting see Numerical Recipes, chapter 15 "Modeling of data". SYNOPSIS use PDL::Fit::LM;...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (91): PDL::Fit::LM Download

Added: February 27, 2010 | Visits: 887

PDL::Reduce PDL::Reduce is Perl module that helps to reduce functions for PDL. Many languages have a reduce function used to reduce the rank of an N-D array by one. It works by applying a selected operation along a specified dimension. This module implements such a function for PDL by providing a...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (93): PDL::Reduce Download

Added: August 08, 2010 | Visits: 727

PDL::NiceSlice PDL::NiceSlice Perl module contains a nicer slicing syntax for PDL. SYNOPSYS use PDL::NiceSlice; $a(1:4) .= 2; # concise syntax for ranges print $b((0),1:$end); # use variables in the slice expression $a->xchg(0,1)->(($pos-1)) .= 0; # default method syntax $idx = long 1, 7, 3, 0; # a...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (95): PDL::NiceSlice Download

Added: June 12, 2010 | Visits: 1.009

PDL::IO::Pic PDL::IO::Pic is a image I/O for PDL. Image I/O for PDL based on the netpbm package. This package implements I/O for a number of popular image formats by exploiting the xxxtopnm and pnmtoxxx converters from the netpbm package (which is based on the original pbmplus by Jef Poskanzer). Netpbm...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (116): PDL::IO::Pic Download

Added: September 16, 2010 | Visits: 1.406

PDL::API PDL::API is a Perl module for making piddles from Perl and C/XS code. A simple cookbook how to create piddles manually. It covers both the Perl and the C/XS level. Additionally, it describes the PDL core routines that can be accessed from other modules. These routines basically define the PDL...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (98): PDL::API Download

Added: July 10, 2010 | Visits: 1.171

PDL::Indexing PDL::Indexing Perl module contains a tutorial on how to index piddles. This manpage should serve as a first tutorial on the indexing and threading features of PDL. This manpage is still in alpha development and not yet complete. "Meta" comments that point out deficiencies/omissions of this...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (94): PDL::Indexing Download

Added: August 09, 2010 | Visits: 1.057

PDL::Transform::Cartography PDL::Transform::Cartography Perl module contains useful cartographic projections. SYNOPSIS # make a Mercator map of Earth use PDL::Transform::Cartography; $a = earth_coast(); $a = graticule(10,2)->glue(1,$a); $t = t_mercator; $w = pgwin(xs); $w->lines($t->apply($a)->clean_lines());...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (103): PDL::Transform::Cartography Download

Added: June 13, 2010 | Visits: 847

PDL::IO::Misc PDL::IO::Misc is a Perl module with misc IO routines for PDL. rcols() Read ASCII whitespaced cols from a file into piddles and perl arrays (also see "rgrep()"). There are two calling conventions - the old version, where a pattern can be specified after the filename/handle, and the new...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (87): PDL::IO::Misc Download

Added: November 05, 2010 | Visits: 1.166

PDL::Transform PDL::Transform is a Perl module that coordinate transforms, image warping, and N-D functions. SYNOPSIS use PDL::Transform; my $t = new PDL::Transform:: ( ) $out = $t->apply($in) # Apply transform to some N-vectors (Transform method) $out = $in->apply($t) # Apply transform to some...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (102): PDL::Transform Download

Added: January 20, 2010 | Visits: 1.198

PDL::MatrixOps PDL::MatrixOps Perl module contains some useful Matrix operations. SYNOPSIS $inv = $a->inv; $det = $a->det; ($lu,$perm,$par) = $a->lu_decomp; $x = lu_backsub($lu,$perm,$b); # solve $a x $x = $b PDL::MatrixOps is PDLs built-in matrix manipulation code. It contains utilities for many...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (107): PDL::MatrixOps Download

Added: May 04, 2010 | Visits: 1.255

PDL::Graphics::LUT PDL::Graphics::LUT is a Perl module that provides access to a number of look-up tables. SYNOPSIS use PDL::Graphics::PGPLOT; use PDL::Graphics::LUT; # what tables are available my @tables = lut_names(); # get the reversed colour table smooth, # with the gamma intensity ramp my ( $l,...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (98): PDL::Graphics::LUT Download

Added: June 02, 2010 | Visits: 1.059

PDL::Bad PDL::Bad - PDL does not process bad values. PDL has been compiled with WITH_BADVAL either 0 or undef, so it does not contain any bad-value support code. Actually, a number of methods are defined, but they are only placeholders to make writing other code, that has to handle WITH_BADVAL being...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (101): PDL::Bad Download

Added: August 03, 2010 | Visits: 1.246

PDL::Graphics::AquaTerm PDL::Graphics::AquaTerm is a Perl module that provides access to the AquaTerm Mac OS-X graphics terminal. SYNOPSIS # example 1 use PDL; use PDL::Graphics::LUT; use PDL::Graphics::AquaTerm; my $x_size = 255; my $y_size = 255; aquaOpen({SIZE_X => $x_size, SIZE_Y => $y_size});...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): PDL::Graphics::AquaTerm Download

Added: June 07, 2010 | Visits: 1.071

PDL::Graphics::X PDL::Graphics::X is a PDL OO access to X windows. SYNOPSIS # example 1 use PDL; use PDL::Graphics::X; my $x_size = 255; my $y_size = 255; my $win1 = PDL::Graphics::X->new({SIZE_X => $x_size, SIZE_Y => $y_size}); my $a = xvals(zeroes(byte,$x_size,$y_size)); $win1->imag($a); # example...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (106): PDL::Graphics::X Download

Added: November 23, 2010 | Visits: 1.472

Mesh Viewer Mesh Viewer is an easy to use lightweight application to display triangular meshes from a variety of file formats (see 3D formats). Mesh Viewer uses the OpenGL API to render the models. The program was born under the need for quickly displaying reconstructed triangulated meshes. The Mesh Viewer...


Platforms: *nix

License: Freeware Size: 634.88 KB Download (127): Mesh Viewer Download

Added: September 24, 2010 | Visits: 929

PDL::Fit::Levmar PDL::Fit::Levmar is a Perl module with Levenberg-Marquardt fit/optimization routines. Levenberg-Marquardt routines for least-squares fit to functions non-linear in fit parameters. This module provides a PDL ( PDL::PDL ) interface to the non-linear fitting library levmar (written in C). Levmar...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (104): PDL::Fit::Levmar Download

< 1 2 3 4 5 >