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

What Is A Math Expression freeware
Filter: All | Freeware | Demo
 

What Is A Math Expression

< 1 2 3 4 5 > 
Added: August 11, 2008 | Visits: 2.020

Math Solver II Math Solver II is a scientific calculator. Math Solver II includes a step-by-step solution for any mathematical expression, to make work/homework more fun and easy. Also includes a Simple Mode, for smaller size on desktop. This new version also includes many new an interesting features, like...



Platforms: Windows

License: Freeware Size: 4.47 MB Download (283): Math Solver II Download

Added: July 06, 2010 | Visits: 1.107

Math::Combinatorics Math::Combinatorics is a Perl module that can perform combinations and permutations on lists. SYNOPSIS Available as an object oriented API. use Math::Combinatorics; my @n = qw(a b c); my $combinat = Math::Combinatorics->new(count => 2, data => [@n], ); print "combinations of 2 from:...





Platforms: *nix

License: Freeware Size: 10.24 KB Download (168): Math::Combinatorics Download

Added: October 27, 2010 | Visits: 1.334

Language::Basic::Expression Language::Basic::Expression is a Perl package to handle string, numeric, and boolean expressions. SYNOPSIS See Language::Basic for the overview of how the Language::Basic module works. This pod page is more technical. # Given an LB::Token::Group, create an expression I parse it my $exp =...


Platforms: *nix

License: Freeware Size: 52.22 KB Download (100): Language::Basic::Expression Download

Added: July 01, 2010 | Visits: 836

Math::NoCarry Math::NoCarry is a Perl extension for no carry arithmetic. SYNOPSIS use Math::NoCarry; my $sum = Math::NoCarry::add( 123, 456 ); my $difference = Math::NoCarry::subtract( 123, 456 ); my $product = Math::NoCarry::multiply( 123, 456 ); No carry arithmetic doesnt allow you to carry...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (87): Math::NoCarry Download

Added: July 08, 2010 | Visits: 1.490

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 (129): Math::CDF Download

Added: February 09, 2010 | Visits: 1.083

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 (110): Math::Vec Download

Added: February 26, 2010 | Visits: 1.169

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 (138): Math::Telephony::ErlangC Download

Added: March 09, 2010 | Visits: 1.210

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 (259): Math::Telephony::ErlangB Download

Added: April 24, 2010 | Visits: 769

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 (93): Math::BaseCalc Download

Added: November 20, 2010 | Visits: 1.062

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 (96): Math::BaseArith Download

Added: May 16, 2010 | Visits: 1.423

regular expression parser regular expression parser is a C++ regexp parser that accomplishes The Open Group specification Issue 6, IEEE Std 1003.1, 2004 Edition. regular expression parser allows you to parse input using regular expressions, and to retrieve parsed sub-expression matches in a few steps..


Platforms: *nix

License: Freeware Size: 337.92 KB Download (145): regular expression parser Download

Added: June 26, 2010 | Visits: 1.154

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: September 25, 2010 | Visits: 1.076

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.022

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 (116): Math::Polynomial::Solve Download

Added: October 06, 2010 | Visits: 906

Math::Calc::Euro Math::Calc::Euro is a Perl module to convert between EUR and the old currencies. SYNOPSIS my $guildercalc = Math::Calc::Euro->new(NLG) print $guildercalc->to_euro(1), "n"; # 0.45378... print $guildercalc->from_national(1), "n"; # same print $guildercalc->to_national(1), "n"; # 2.20371...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (91): Math::Calc::Euro Download

Added: February 20, 2010 | Visits: 795

Math::Fraction Math::Fraction is a Perl module to manipulate exact fractions. SYNOPSIS use Math::Fraction; $a = frac(1,2); $b = frac(6,7); print "$a + $b = ", $a + $b, "$a * $b = ", $a * $b; print $a->num;.


Platforms: *nix

License: Freeware Size: 16.38 KB Download (101): Math::Fraction Download

Added: February 07, 2010 | Visits: 1.122

Math::Logic::Predicate Math::Logic::Predicate is a Perl module to manage and query a predicate assertion database. SYNOPSIS use Math::Logic::Predicate; $db = new Math::Logic::Predicate; # Enter some predicates into the database $db->add(<


Platforms: *nix

License: Freeware Size: 17.41 KB Download (99): Math::Logic::Predicate Download

Added: July 14, 2010 | Visits: 1.047

Math::Symbolic Math::Symbolic is a Perl module for symbolic calculations. SYNOPSIS use Math::Symbolic; my $tree = Math::Symbolic->parse_from_string(1/2 * m * v^2); # Now do symbolic calculations with $tree. # ... like deriving it... my ($sub) = Math::Symbolic::Compiler->compile_to_sub($tree); my...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (96): Math::Symbolic 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 (156): Math::Algebra::Symbols Download

Added: February 14, 2010 | Visits: 1.525

Math::Zap::Matrix Math::Zap::Matrix is a Perl module for 3*3 matrix manipulation. Synopsis Example t/matrix.t #_ Matrix _____________________________________________________________ # Test 3*3 matrices # philiprbrenan@yahoo.com, 2004, Perl License...


Platforms: *nix

License: Freeware Size: 63.49 KB Download (189): Math::Zap::Matrix Download

< 1 2 3 4 5 >