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

Pdfviewer Pdl software
Filter: All | Freeware | Demo
 

Pdfviewer Pdl

< 1 2 
Added: April 03, 2010 | Visits: 1.416

PDL::Graphics::PGPLOT::Window PDL::Graphics::PGPLOT::Window is a OO interface to PGPLOT windows. SYNOPSIS perldl> use PDL::Graphics::PGPLOT::Window perldl> $win = PDL::Graphics::PGPLOT::Window->new(Device => /xs); perldl> $a = pdl [1..100] perldl> $b = sqrt($a) perldl> $win->line($b) perldl> $win->hold() perldl> $c...



Platforms: *nix

License: Freeware Size: 1.1 MB Download (106): PDL::Graphics::PGPLOT::Window Download

Added: June 10, 2010 | Visits: 815

PDL::Image2D PDL::Image2D is a Perl module that contains miscellaneous 2D image processing functions. For large kernels, using a FFT routine, such as fftconvolve() in PDL::FFT, will be quicker. $new = conv2d $old, $kernel, {OPTIONS} $smoothed = conv2d $image, ones(3,3), {Boundary => Reflect} Boundary -...





Platforms: *nix

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

Added: March 05, 2010 | Visits: 796

PDL::IO::FITS PDL::IO::FITS Perl module offers a simple FITS support for PDL. SYNOPSIS use PDL; use PDL::IO::FITS; $a = rfits(foo.fits); # read a FITS file $a->wfits(bar.fits); # write a FITS file This module provides basic FITS support for PDL, in the sense of reading and writing whole FITS files....


Platforms: *nix

License: Freeware Size: 2.1 MB Download (93): PDL::IO::FITS Download

Added: March 12, 2010 | Visits: 536

PDL::Impatient PDL::Impatient is a PDL for the impatient. SYNOPSIS A brief summary of the main PDL features and how to use them. Perl is an extremely good and versatile scripting language, well suited to beginners and allows rapid prototyping. However until recently it did not support data structures...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (93): PDL::Impatient Download

Added: August 17, 2010 | Visits: 1.121

PDL::FFTW PDL::FFTW is a PDL interface to the Fastest Fourier Transform in the West v2.x. This is a means to interface PDL with the FFTW library. Its similar to the standard FFT routine but its usually faster and has support for real transforms. It works well for the types of PDLs for which was the...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (149): PDL::FFTW Download

Added: April 18, 2010 | Visits: 843

PDL::Pod::Html PDL::Pod::Html is Perl module to convert pod files to HTML. SYNOPSIS use PDL::Pod::Html; pod2html([options]); Converts files from pod format (see perlpod) to HTML format. It can automatically generate indexes and cross-references, and it keeps a cache of things it knows how to...


Platforms: *nix

License: Freeware Size: 655.36 KB Download (90): PDL::Pod::Html Download

Added: October 07, 2010 | Visits: 1.261

PDL::Tips PDL::Tips is a Perl module with small tidbits of useful arcana. Programming tidbits and such. SYNOPSIS use PDL; # Whatever happens here. This page documents useful idioms, helpful hints and tips for using Perl Data Language v2.0. Help Use help help within perldl or the pdldoc program...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (97): PDL::Tips Download

Added: July 11, 2010 | Visits: 697

PDL::Internals PDL::Internals is a Perl module that contains a description of some aspects of the current internals. Intro This document explains various aspects of the current implementation of PDL. If you just want to use PDL for something, you definitely do not need to read this. Even if you want to...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (88): PDL::Internals Download

Added: January 26, 2010 | Visits: 643

PDL::Slices PDL::Slices is a Perl module used for indexing, slicing, and dicing. SYNOPSIS use PDL; $a = ones(3,3); $b = $a->slice(-1:0,(1)); $c = $a->dummy(2); This package provides many of the powerful PerlDL core index manipulation routines. These routines mostly allow two-way data flow, so you...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (88): PDL::Slices Download

Added: August 20, 2010 | Visits: 835

PDL::Primitive PDL::Primitive Perl module contains primitive operations for pdl. This module provides some primitive and useful functions defined using PDL::PP and able to use the new indexing tricks. See PDL::Indexing for how to use indices creatively. For explanation of the signature format, see PDL::PP....


Platforms: *nix

License: Freeware Size: 2.1 MB Download (90): PDL::Primitive Download

Added: June 07, 2010 | Visits: 650

PDL::Ufunc PDL::Ufunc Perl module contains primitive ufunc operations for pdl. This module provides some primitive and useful functions defined using PDL::PP based on functionality of what are sometimes called ufuncs (for example NumPY and Mathematica talk about these). It collects all the functions...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (90): PDL::Ufunc Download

Released: December 03, 2012  |  Added: December 03, 2012 | Visits: 1.631

PDL::Graphics::TriD PDL::Graphics::TriD is a PDL 3D interface. SYNOPSIS use PDL::Graphics::TriD; # After each graph, let the user rotate is and # wait for him to press q, then make new graph line3d($coords); # $coords = (3,n,...) line3d($coords,$colors); # $colors = (3,n,...) line3d([$x,$y,$z]);...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (108): PDL::Graphics::TriD Download

Added: February 17, 2010 | Visits: 867

PDL::Doc::Perldl PDL::Doc::Perldl are commands for accessing PDL doc database from perldl shell. This module provides a simple set of functions to access the PDL documentation of database, for use from the perldl shell and the pdldoc command-line program. Currently, multiple matches are not handled very well....


Platforms: *nix

License: Freeware Size: 1.1 MB Download (105): PDL::Doc::Perldl Download

Added: January 25, 2010 | Visits: 953

PDL::Slatec PDL::Slatec is a PDL interface to the slatec numerical programming library. SYNOPSIS use PDL::Slatec; ($ndeg, $r, $ierr, $a) = polyfit($x, $y, $w, $maxdeg, $eps); This module serves the dual purpose of providing an interface to parts of the slatec library and showing how to interface PDL...


Platforms: *nix

License: Freeware Size: 2.1 MB Download (115): PDL::Slatec Download

Released: May 11, 2012  |  Added: May 26, 2012 | Visits: 810

Spire.PDFViewer for WPF Spire.PDFViewer for WPF is a powerful WPF PDF Viewer control which enables developers to display PDF documents with their WPF applications without Adobe Reader. It's available to load and view PDF documents like PDF/A-1B, PDF/X1A, and even encrypted from stream, file and byte array with support...


Platforms: Windows, etc.

License: Shareware Cost: $499.00 USD Size: 38.3 MB Download (88): Spire.PDFViewer for WPF Download

Released: March 21, 2013  |  Added: May 07, 2013 | Visits: 844

Spire.PDFViewer Spire.PDFViewer is a powerful component to view PDF for .NET, which allows developers to load PDF document from stream, file and byte array. It enables to open and read encrypted PDF files. Also, it supports to print PDF with multiple orientations. Furthermore, it can export PDFs as image formats...


Platforms: Windows, etc.

License: Shareware Cost: $599.00 USD Size: 16.3 MB Download (99): Spire.PDFViewer Download

Added: May 17, 2006 | Visits: 2.358

PDFViewer OCX PDFViewer OCX is an ActiveX component which enables your application to display and interact with PDF files. Simply place the control on your form, set the Path property, and you are all set! PDFViewer OCX is identical to Adobe Acrobats PDF Reader program.


Platforms: Windows

License: Shareware Cost: $299.95 USD Size: 1.66 MB Download (137): PDFViewer OCX Download

Released: April 16, 2013  |  Added: May 04, 2013 | Visits: 1.232

Spire.Office Spire.Office for .NET is a compilation of every .NET component offered by e-iceblue. It packed Spire.Doc for .NET, Spire.XLS for .NET, Spire.PDFViewer for .NET, Spire.DocViewer for .NET, Spire.PDF for .NET and Spire.DataExport. Rich Functions: 1) Enable your .NET applications to read,...


Platforms: Windows, etc.

License: Shareware Cost: $1899.00 USD Size: 55.1 MB Download (124): Spire.Office Download

Released: November 19, 2012  |  Added: November 19, 2012 | Visits: 622

ContactGenie Exporter Basic Ed ContactGenie, an advanced contact exporter for Microsoft Outlook/Exchange '2000-'2007 including support for Personal Distributions Lists (PDL), MS Exchange Global Address List (GAL) and Global Distribution Groups (GDG). Export to MS Access, MS Excel and text files (CSV, Tab, and custom...


Platforms: Windows

License: Shareware Cost: $49.00 USD Size: 8.84 MB Download (582): ContactGenie Exporter Basic Ed Download

Added: May 10, 2013 | Visits: 683

php directory listing This is phpdl or pdl, a little php script which makes a directory listing. It shows the inode , file, name (with link), file size, timestamp, permissions, path and directory size. It is styled with some colors.


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (56): php directory listing Download

< 1 2