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.478.819 Times

Analytical Data Arrays Handling freeware
Filter: All | Freeware | Demo
 

Analytical Data Arrays Handling

< 1 2 3 4 5 > 
Added: July 03, 2010 | Visits: 837

Template::Plugin::Data::HTMLDumper Template::Plugin::Data::HTMLDumper is a template toolkit plugin interface to Data::HTMLDumper. SYNOPSIS [% USE Data.HTMLDumper %] [% Data.HTMLDumper.dump(myvar) %] A very simple Template Toolkit Plugin Interface to the Data::HTMLDumper module. The Data::HTMLDumper module displays output... Platforms: *nix

License: Freeware Size: 2.05 KB Download (97): Template::Plugin::Data::HTMLDumper Download

Added: November 12, 2010 | Visits: 744

Data::PropertyList Data::PropertyList is a Perl module that can convert arbitrary objects to/from strings. SYNOPSIS use Data::PropertyList qw(astext fromtext); $hash_ref = { items => [ 7 .. 11 ], key => value }; $string = astext($hash_ref); # ... $hash_ref = fromtext($string); print $hash_ref->{items}[0];... Platforms: *nix

License: Freeware Size: 8.19 KB Download (94): Data::PropertyList Download

Added: March 16, 2010 | Visits: 1.109

Data::Diff Data::Diff is a data structure comparison module. SYNOPSIS use Data::Diff qw(diff); # simple procedural interface to raw difference output $out = diff( $a, $b ); # OO usage $diff = Data::Diff->new( $a, $b ); $new = $diff->apply(); $changes = $diff->diff_a(); Data::Diff computes the... Platforms: *nix

License: Freeware Size: 6.14 KB Download (102): Data::Diff Download

Added: March 09, 2010 | Visits: 902

IVuPy IVuPy (I-View-Py) aims to be a solid basis for large Qt based Python programs geared to data analysis and 3D visualization of huge data sets. Python is extended by IVuPy with more than 600 classes of two of the Coin3D C++ class libraries: Coin and SoQt. Data exchange between Python and the... Platforms: *nix

License: Freeware Size: 1.2 MB Download (98): IVuPy Download

Added: May 04, 2010 | Visits: 998

Data::Region Data::Region Perl module can define hierarchical areas with behaviors. SYNOPSIS use Data::Region; $r = Data::Region->new( 8.5, 11, { data => PageObj->new() } ); $r->data( PageObj->new() ); foreach my $c ( $r->subdivide(2.5,3) ) { $a = $c->area(0.25,0.25, 2.25,2.75); $a2 =... Platforms: *nix

License: Freeware Size: 8.19 KB Download (94): Data::Region Download

Added: March 21, 2010 | Visits: 1.138

Erwin Data Structures Erwin Data Structures is a library that is meant to be the ultimate data structure library for mixed usage of C and C++. Arbitrary key and value types are implemented by template files that dont use C++ templates, but are instantiated by a Perl script. This way, mixed usage in C and C++ is... Platforms: *nix

License: Freeware Size: 686.08 KB Download (101): Erwin Data Structures Download

Added: June 23, 2010 | Visits: 705

DWH_File DWH_File module contains data and object persistence in deep and wide hashes. SYNOPSIS use DWH_File qw/ GDBM_File /; # the use argument set the DBM module used tie( %h, DWH_File, myFile, O_RDWR|O_CREAT, 0644 ); untie( %h ); # essential! Note: the files produced by DWH_File 0.22 are in... Platforms: *nix

License: Freeware Size: 23.55 KB Download (92): DWH_File Download

Added: September 13, 2010 | Visits: 887

Data::Faker::DateTime Data::Faker::DateTime is a Data::Faker plugin. DATA PROVIDERS unixtime Return a unix time (seconds since the epoch) for a random time between the epoch and now. date Return a random date as a string, using a random date format (see date_format). time Return a random time as a... Platforms: *nix

License: Freeware Size: 20.48 KB Download (101): Data::Faker::DateTime Download

Added: January 02, 2010 | Visits: 1.090

Data::Faker::StreetAddress Data::Faker::StreetAddress is a Data::Faker plugin. DATA PROVIDERS us_zip_code Return a random zip or zip+4 zip code in the US zip code format. Note that this is not necessarily a valid zip code, just a 5 or 9 digit number in the correct format. us_state Return a random US state name.... Platforms: *nix

License: Freeware Size: 20.48 KB Download (104): Data::Faker::StreetAddress Download

Added: July 03, 2010 | Visits: 688

Data::BenchmarkResults Data::BenchmarkResults is a Perl extension for averaging and comparing multiple benchmark runs. SYNOPSIS use Data::BenchmarkResults; $conditionA_results = new Data::BenchmarkResults; $conditionB_results = new Data::BenchmarkResults; #Load test result runs for the first condition... Platforms: *nix

License: Freeware Size: 9.22 KB Download (86): Data::BenchmarkResults Download

Added: May 16, 2010 | Visits: 1.045

Data::SpreadPagination Data::SpreadPagination is a Perl module for page numbering and spread pagination. SYNOPSIS use Data::SpreadPagination; my $pageInfo = Data::SpreadPagination->new({ totalEntries => $totalEntries, entriesPerPage => $entriesPerPage, # Optional, will use defaults otherwise. # only 1 of... Platforms: *nix

License: Freeware Size: 7.17 KB Download (97): Data::SpreadPagination Download

Added: August 23, 2010 | Visits: 1.270

Data::ICal::Entry::Alarm::Email Data::ICal::Entry::Alarm::Email is a Perl module that represents an emailed alarm in an iCalendar file. SYNOPSIS my $valarm = Data::ICal::Entry::Alarm::Audio->new(); $valarm->add_properties( attach => [ "basic:ftp://host.com/pub/sounds/bell-01.aud", { fmttype => "audio/basic" } ], #... Platforms: *nix

License: Freeware Size: 102.4 KB Download (101): Data::ICal::Entry::Alarm::Email Download

Added: February 24, 2010 | Visits: 1.060

Data::Report Data::Report provides a framework for flexible reporting. Data::Report is a flexible, plugin-driven reporting framework. It makes it easy to define reports that can be produced in text, HTML and CSV. Textual ornaments like extra empty lines, dashed lines, and cell lines can be added in a way... Platforms: *nix

License: Freeware Size: 16.38 KB Download (97): Data::Report Download

Added: November 21, 2010 | Visits: 1.009

Data::Walker Data::Walker is a tool for navigating through Perl data structures. SYNOPSIS Without any explicit objects: use Data::Walker; Data::Walker->cli( $data_structure ); Object-style invocation: use Data::Walker; my $w = new Data::Walker; $w->walk( $data_structure ); $w->ls("-al");... Platforms: *nix

License: Freeware Size: 20.48 KB Download (92): Data::Walker Download

Added: August 02, 2010 | Visits: 1.127

The Data Mine The Data Mine is a search engine designed to give users an unusually powerful interface. It is designed around human-computer intelligent interaction (making the computer a tool so humans can use their intelligence). The project divides the screen into two halves: one lets you find all the... Platforms: *nix

License: Freeware Size: 71.68 KB Download (95): The Data Mine Download

Added: February 01, 2010 | Visits: 1.008

Data::DPath::Builder Data::DPath::Builder is a SAX handler for building an XPath tree. SYNOPSIS use AnySAXParser; use Data::DPath::Builder; $builder = Data::DPath::Builder->new(); $parser = AnySAXParser->new( Handler => $builder ); $root_node = $parser->parse( Source => [SOURCE] ); Data::DPath::Builder is... Platforms: *nix

License: Freeware Size: 32.77 KB Download (97): Data::DPath::Builder Download

Added: June 02, 2010 | Visits: 587

Data::TreeDumper Data::TreeDumper is an improved replacement for Data::Dumper. Powerful filtering capability. SYNOPSIS use Data::TreeDumper ; my $sub = sub {} ; my $s = { A => { a => { } , bbbbbb => $sub , c123 => $sub , d => $sub } , C => { b => { a => { a => { } , b => sub { } ,... Platforms: *nix

License: Freeware Size: 26.62 KB Download (88): Data::TreeDumper Download

Added: August 13, 2010 | Visits: 932

Data::Page Data::Page is a Perl module that helps when paging through sets of results. SYNOPSIS use Data::Page; my $page = Data::Page->new(); $page->total_entries($total_entries); $page->entries_per_page($entries_per_page); $page->current_page($current_page); print " First page: ",... Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Data::Page Download

Added: November 26, 2010 | Visits: 772

Data::Inherited Data::Inherited is a Perl module with hierarchy-wide accumulation of list and hash results. SYNOPSIS package Foo; use base Data::Inherited; use constant PROPERTIES => (qw/name address/); package Bar; use base Foo; use constant PROPERTIES => (qw/age/); package main; my $bar =... Platforms: *nix

License: Freeware Size: 12.29 KB Download (102): Data::Inherited Download

Added: November 25, 2010 | Visits: 1.033

SOAP::Data SOAP::Data is a Perl class that provides the means by which to explicitly manipulate and control all aspects of the way in which Perl data gets expressed as SOAP data entities. The SOAP::Data class provides the means by which to explicitly manipulate and control all aspects of the way in which... Platforms: *nix

License: Freeware Size: 235.52 KB Download (100): SOAP::Data Download

< 1 2 3 4 5 >