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 49.594.109 Times

Finite Math Help freeware
Filter: All | Freeware | Demo
 

Finite Math Help

< 1 2 3 4 5 > 
Added: November 06, 2010 | Visits: 871

Math::FresnelZone SYNOPSIS use Math::FresnelZone; use Math::FresnelZone qw(fresnel fresnelMi fresnelKm); The arguments are: 0 - distance in kilometers or miles (default is 1), 1 - frequency in GHz (defualt 2.4), 2 - set to true to specify that the distance you are inputting is in miles and that the...



Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): Math::FresnelZone Download

Added: July 05, 2010 | Visits: 936

Math::HashSum Math::HashSum can sum a list of key-value pairs on a per-key basis. SYNOPSIS use Math::HashSum qw(hashsum); my %hash1 = (a=>.1, b=>.4); my %hash2 = (a=>.2, b=>.5); my %sum = hashsum(%hash1,%hash2); print "$sum{a}n"; # Prints .3 print "$sum{b}n"; # Prints .9 This module allows you to...





Platforms: *nix

License: Freeware Size: 18.43 KB Download (88): Math::HashSum Download

Added: September 13, 2010 | Visits: 1.191

Math::Numbers Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory. SYNOPSIS use Math::Numbers; my $a = 123; my $b = 34; my $numbers = Math::Numbers->new($a, $b [, ...]); print "They are coprimes (relatively primes)!n" if...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (98): Math::Numbers Download

Added: May 11, 2010 | Visits: 877

Tk::Help Tk::Help is simple widget for creating a help system for Perl/Tk applications. SYNOPSIS use Tk::Help; my $help = $main->Help(-variable => @array); This is an answer to a personal need to be able to create help systems for my Perl/Tk applications. Originally, I just created a really big...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): Tk::Help Download

Added: July 08, 2010 | Visits: 1.484

Math::CDF Math::CDF is a Perl module to generate probabilities and quantiles from several statistical probability functions. SYNOPSIS use Math::CDF; $prob = &Math::CDF::pnorm(1.96); if( not defined($z = &Math::CDF::qnorm(0.975)) ) { die "qnorm() failed"; } or use Math::CDF qw(:all); $prob =...


Platforms: *nix

License: Freeware Size: 65.54 KB Download (123): Math::CDF Download

Added: February 09, 2010 | Visits: 1.074

Math::Vec Math::Vec is a Object-Oriented Vector Math Methods in Perl. SYNOPSIS use Math::Vec; $v = Math::Vec->new(0,1,2); or use Math::Vec qw(NewVec); $v = NewVec(0,1,2); @res = $v->Cross([1,2.5,0]); $p = NewVec(@res); $q = $p->Dot([0,1,0]); or use Math::Vec qw(:terse); $v = V(0,1,2); $q...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (104): Math::Vec Download

Added: February 26, 2010 | Visits: 1.165

Math::Telephony::ErlangC Math::Telephony::ErlangC is a Perl extension for Erlang C calculations. SYNOPSIS use Math::Telephony::ErlangC; # Evaluate probability that a service request will have to wait $wprob = wait_probability($traffic, $servers); # Probability that the wait time will be less than a fixed maximum...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (132): Math::Telephony::ErlangC Download

Added: March 09, 2010 | Visits: 1.205

Math::Telephony::ErlangB Math::Telephony::ErlangB is a Perl extension for Erlang B calculations. SYNOPSIS use Math::Telephony::ErlangB qw( :all ); # Evaluate blocking probability $bprob = blocking_probability($traffic, $servers); $gos = gos($traffic, $servers); # Same result as above # Dimension minimum number...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (253): Math::Telephony::ErlangB Download

Added: March 18, 2010 | Visits: 812

Math::Expr Math::Expr is a Perl module that parses mathematical expressions. SYNOPSIS require Math::Expr; $p=new Math::Expr; $e=$p->Parse("a+4*b-d/log(s)+f(d,e)"); Parses mathematical expressions into a tree structure. The expressions may contain integers, real numbers, alphanumeric variable names,...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (93): Math::Expr Download

Added: April 24, 2010 | Visits: 766

Math::BaseCalc Math::BaseCalc is a Perl module that can convert numbers between various bases. SYNOPSIS use Math::BaseCalc; my $calc = new Math::BaseCalc(digits => [0,1]); #Binary my $bin_string = $calc->to_base(465); # Convert 465 to binary $calc->digits(oct); # Octal my $number =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (87): Math::BaseCalc Download

Added: November 20, 2010 | Visits: 1.053

Math::BaseArith Math::BaseArith is a Perl extension for mixed-base number representation (like APL encode/decode). SYNOPSIS use Math::BaseArith; encode( value, base_list ); decode( representation_list, base_list ); The inspiration for this module is a pair of functions in the APL programming language...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (90): Math::BaseArith Download

Added: May 10, 2013 | Visits: 1.379

Help Center Live Help Center Live is dedicated to making available the tools to help you serve your customers and visitors. The Help Center Live Community produces Help Center Live free of charge. All we ask for is your ideas and comments.Modules" are expansions of the core being of HCL. These build on the solid...


Platforms: Windows, *nix, PHP, BSD Solaris

License: Freeware Download (103): Help Center Live Download

Added: August 02, 2010 | Visits: 1.269

Mail::Salsa::Action::Help Mail::Salsa::Action::Help is a Perl extension for a lot of functions. SYNOPSIS use Mail::Salsa::Action::Help; Stub documentation for Mail::Salsa, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited..


Platforms: *nix

License: Freeware Size: 26.62 KB Download (91): Mail::Salsa::Action::Help Download

Added: April 13, 2010 | Visits: 1.997

Math::Pari Math::Pari is a Perl interface to PARI. SYNOPSIS use Math::Pari; $a = PARI 2; print $a**10000; or use Math::Pari qw(Mod); $a = Mod(3,5); print $a**10000; This package is a Perl interface to famous library PARI for numerical/scientific/number-theoretic calculations. It allows use of...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (104): Math::Pari Download

Added: August 13, 2010 | Visits: 1.644

PHD Help Desk PHD Help Desk provides help desk registry and follow-up software. PHD Help Desk is software conceived for the registry and follow-up of help desks incidents. Registry of incidents allows classification in two levels (type and subtype), the state of the incident, a description, ticket assignment...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (117): PHD Help Desk Download

Added: April 17, 2010 | Visits: 1.000

Math::MatrixReal::Aug SYNOPSIS use Math::MatrixReal; use Math::MatrixReal::Aug; These are certain extra methods for Math::MatrixReal, in the tradition of Math::MatrixReal::Ext1; $matrix1->augmentright($matrix2); Creates a new matrix of the form [$matrix1 $matrix2]. $matrix1 and $matrix2 must have the same...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (101): Math::MatrixReal::Aug Download

Added: June 26, 2010 | Visits: 1.147

Math::Random::MT::Auto Math::Random::MT::Auto is a Perl module for auto-seeded Mersenne Twister PRNGs. SYNOPSIS use strict; use warnings; use Math::Random::MT::Auto qw(rand irand shuffle gaussian), /dev/urandom => 256, random_org; # Functional interface my $die_roll = 1 + int(rand(6)); my $coin_flip =...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (98): Math::Random::MT::Auto Download

Added: October 02, 2010 | Visits: 1.308

Free Finite Element Package Free Finite Element Package is a modular collection of C libraries which contain numerical methods required when working with linear and quadratic finite elements in two dimensions. FFEP works on GNU/Linux and is portable to every system where MEML (i.e. LAPACK and BLAS) are available. The goal...


Platforms: *nix

License: Freeware Size: 337.92 KB Download (119): Free Finite Element Package Download

Added: September 25, 2010 | Visits: 1.070

Math::Amoeba Math::Amoeba is a Multidimensional Function Minimization. SYNOPSIS use Math::Amoeba qw(ConstructVertices EvaluateVertices Amoeba MinimiseND); my ($vertice,$y)=MinimiseND(@guess,@scales,&func,$tol,$itmax,$verbose); my @vertices=ConstructVertices(@vector,@offsets); my...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (98): Math::Amoeba Download

Added: April 19, 2010 | Visits: 1.015

Math::Polynomial::Solve Math::Polynomial::Solve is a Perl module to find the roots of polynomial equations. SYNOPSIS use Math::Complex; # The roots may be complex numbers. use Math::Polynomial::Solve qw(poly_roots); my @x = poly_roots(@coefficients); or use Math::Complex; # The roots may be complex numbers....


Platforms: *nix

License: Freeware Size: 15.36 KB Download (110): Math::Polynomial::Solve Download

< 1 2 3 4 5 >