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

Fancy Writing Text N Symbols software
Filter: All | Freeware | Demo
 

Fancy Writing Text N Symbols

< 1 2 3 4 5 > 
Added: November 27, 2010 | Visits: 857

Text::Query::BuildSQL Text::Query::BuildSQL is a base class for SQL query builders. SYNOPSIS package Text::Query::BuildSQLsqldb; use Text::Query::BuildSQL; use vars qw(@ISA); @ISA = qw(Text::Query::BuildSQL); Defines all the build_* functions to build a syntax tree. The tree nodes are [ operator scope...



Platforms: *nix

License: Freeware Size: 19.46 KB Download (91): Text::Query::BuildSQL Download

Added: May 07, 2010 | Visits: 861

Text::Diff3::DiffHeckel Text::Diff3::DiffHeckel is a two-way diff plug-in. SYNOPSIS use Text::Diff3; my $f = Text::Diff3::Factory->new; my $p = $f->create_diff; my $mytext = $f->create_text([ map{chomp;$_} < F0 > ]); my $original = $f->create_text([ map{chomp;$_} < F1 > ]); my $diff2 = $p->diff( $origial,...





Platforms: *nix

License: Freeware Size: 11.26 KB Download (101): Text::Diff3::DiffHeckel Download

Added: August 18, 2010 | Visits: 1.012

Text::Roman Text::Roman is a Perl module that converts roman algarism in integer numbers and the contrary, recognize algarisms. SYNOPSIS use Text::Roman; print roman(123); Text::Roman::roman() is a very simple algarism converter. It converts a single integer (in arabic algarisms) at a time to its...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (108): Text::Roman Download

Added: August 27, 2010 | Visits: 1.973

Math::Algebra::Symbols Math::Algebra::Symbols is a Symbolic Algebra in Pure Perl. SYNOPSIS Example symbols.pl #!perl -w -I.. use Math::Algebra::Symbols hyper=>1; use Test::Simple tests=>5; ($n, $x, $y) = symbols(qw(n x y)); $a += ($x**8 - 1)/($x-1); $b += sin($x)**2 + cos($x)**2; $c += (sin($n*$x) +...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (162): Math::Algebra::Symbols Download

Added: February 02, 2010 | Visits: 1.183

Text::LooseCSV Text::LooseCSV is a highly forgiving variable length record text parser; compare to MS Excel. SYNOPSIS use Text::LooseCSV; use IO::File; $fh = new IO::File $fname; $f = new Text::LooseCSV($fh); # Some optional settings $f->word_delimiter("t"); $f->line_delimiter("n");...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (105): Text::LooseCSV Download

Added: May 21, 2010 | Visits: 1.193

Text::Graphics Text::Graphics is a text graphics rendering toolkit. This is a toolkit for rendering plain text via an API like that used for graphics rendering in GUI toolkits. This package might be used when you want to do sophisticated rendering of plain text, e.g., for graphing, creating of complex forms...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (103): Text::Graphics Download

Added: October 12, 2010 | Visits: 678

Text::NSP::Measures Text::NSP::Measures is a Perl module for computing association scores of Ngrams. This module provides the basic framework for these measures. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::MI::ll; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $ll_value = calculateStatistic(...


Platforms: *nix

License: Freeware Size: 962.56 KB Download (92): Text::NSP::Measures Download

Added: July 14, 2010 | Visits: 938

Text::NSP::Measures::2D Text::NSP::Measures::2D is a Perl module that provides basic framework for building measure of association for bigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::MI::ll; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $ll_value = calculateStatistic( n11=>$n11, n1p=>$n1p,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (92): Text::NSP::Measures::2D Download

Added: September 11, 2010 | Visits: 1.046

Text::NSP::Measures::2D::CHI::phi Text::NSP::Measures::2D::CHI::phi is a Perl module that implements Phi coefficient measure for bigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::CHI::phi; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $phi_value = calculateStatistic( n11=>$n11, n1p=>$n1p, np1=>$np1,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (107): Text::NSP::Measures::2D::CHI::phi Download

Added: July 20, 2010 | Visits: 867

Text::NSP::Measures::2D::CHI::tscore Text::NSP::Measures::2D::CHI::tscore is a Perl module that implements T-score measure of association for bigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::CHI::tscore; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $tscore_value = calculateStatistic( n11=>$n11,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (96): Text::NSP::Measures::2D::CHI::tscore Download

Added: November 11, 2010 | Visits: 1.004

Text::NSP::Measures::2D::CHI::x2 Text::NSP::Measures::2D::CHI::x2 is a Perl module that implements Pearsons chi squared measure of association for bigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::CHI::x2; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $x2_value = calculateStatistic( n11=>$n11,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (94): Text::NSP::Measures::2D::CHI::x2 Download

Added: April 05, 2010 | Visits: 961

Text::NSP::Measures::2D::Dice::dice Text::NSP::Measures::2D::Dice::dice is a Perl module to compute Dice coefficient for bigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::Dice::dice; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $dice_value = calculateStatistic( n11=>$n11, n1p=>$n1p, np1=>$np1,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (98): Text::NSP::Measures::2D::Dice::dice Download

Added: November 07, 2010 | Visits: 1.161

Text::NSP::Measures::2D::Dice::jaccard Text::NSP::Measures::2D::Dice::jaccard is a Perl module that implements the jaccard coefficient. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::Dice::jaccard; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $jaccard_value = calculateStatistic( n11=>$n11, n1p=>$n1p,...


Platforms: *nix

License: Freeware Size: 962.56 KB Download (120): Text::NSP::Measures::2D::Dice::jaccard Download

Added: March 05, 2010 | Visits: 894

Text::NSP::Measures::2D::MI Text::NSP::Measures::2D::MI is a Perl module that provides error checks for Loglieklihood, Total Mutual Information, Pointwise Mutual Information and Poisson-Stirling Measure. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::MI::ll; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10;...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (97): Text::NSP::Measures::2D::MI Download

Added: February 16, 2010 | Visits: 954

Text::NSP::Measures::2D::MI::pmi Text::NSP::Measures::2D::MI::pmi is a Perl module that implements Pointwise Mutual Information. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::MI::pmi; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $pmi_value = calculateStatistic( n11=>$n11, n1p=>$n1p, np1=>$np1,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (93): Text::NSP::Measures::2D::MI::pmi Download

Added: August 14, 2010 | Visits: 843

Text::NSP::Measures::2D::MI::ps Text::NSP::Measures::2D::MI::ps is a Perl module that implements Poisson-Stirling measure of association for bigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::MI::ps; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $ps_value = calculateStatistic( n11=>$n11, n1p=>$n1p,...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (92): Text::NSP::Measures::2D::MI::ps Download

Added: July 14, 2010 | Visits: 722

Text::NSP::Measures::2D::MI::tmi Text::NSP::Measures::2D::MI::tmi is a Perl module that implements True Mutual Information. SYNOPSIS Basic Usage use Text::NSP::Measures::2D::MI::tmi; my $npp = 60; my $n1p = 20; my $np1 = 20; my $n11 = 10; $tmi_value = calculateStatistic( n11=>$n11, n1p=>$n1p, np1=>$np1, npp=>$npp);...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (91): Text::NSP::Measures::2D::MI::tmi Download

Added: August 17, 2010 | Visits: 820

Text::NSP::Measures::3D::MI Text::NSP::Measures::3D::MI is a Perl module that provides error checks and framework to implement Loglieklihood, Total Mutual Information, Pointwise Mutual Information and Poisson Stirling Measure for trigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::3D::MI::ll; $ll_value =...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (98): Text::NSP::Measures::3D::MI Download

Added: November 25, 2010 | Visits: 922

Text::NSP::Measures::3D::MI::pmi Text::NSP::Measures::3D::MI::pmi is a Perl module that implements Pointwise Mutual Information for trigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::3D::MI::pmi; $pmi_value = calculateStatistic( n111=>10, n1pp=>40, np1p=>45, npp1=>42, n11p=>20, n1p1=>23, np11=>21, nppp=>100);...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (92): Text::NSP::Measures::3D::MI::pmi Download

Added: August 21, 2010 | Visits: 896

Text::NSP::Measures::3D::MI::ps Text::NSP::Measures::3D::MI::ps is a Perl module that implements Poisson Stirling Measure for trigrams. SYNOPSIS Basic Usage use Text::NSP::Measures::3D::MI::ps; $ps_value = calculateStatistic( n111=>10, n1pp=>40, np1p=>45, npp1=>42, n11p=>20, n1p1=>23, np11=>21, nppp=>100); if(...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (109): Text::NSP::Measures::3D::MI::ps Download

< 1 2 3 4 5 >