Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

math::tamuanova(3pm) [debian man page]

Math::TamuAnova(3pm)					User Contributed Perl Documentation				      Math::TamuAnova(3pm)

NAME
Math::TamuAnova - Perl extension for the tamuanova library SYNOPSIS
use Math::TamuAnova; DESCRIPTION
This module allows you to use the tamu-anova library from perl programs. EXPORT None by default. Exportable constants anova_fixed anova_mixed anova_random Exportable functions anova anova_twoway printanova printanova_twoway USE
$hash=Math::TamuAnova::anova(DATA[], FACTOR[], J); DATA is an array of double, FACTOR an array of integer. Factors must be within 1..J DATA and FACTOR must have the same size. $hash2=Math::TamuAnova::anova_twoway(DATA[], FACTORA[], FACTORB[], JA, JB, mode); DATA is an array of double, FACTOR(A|B) arrays of integer. Factors A must be within 1..JA, and Factors B within 1..JB DATA, FACTORA and FACTORB must have the same size. EXAMPLES
$res=Math::TamuAnova::anova( [88.60,73.20,91.40,68.00,75.20,63.00,53.90, 69.20,50.10,71.50,44.90,59.50,40.20,56.30, 38.70,31.00,39.60,45.30,25.20,22.70], [1,1,1,1,1,2,2,2,2,2,3,3,3,3,3,4,4,4,4,4], 4); Math::TamuAnova::printtable( $res ); $res=Math::TamuAnova::anova_twoway( [6,10,11,13,15,14,22,12,15,19,18,31,18,9,12], [1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2], [1, 1, 1, 2, 2, 3, 3, 1, 1, 1, 1, 2, 3, 3, 3], 2,3, &Math::TamuAnova::anova_fixed); Math::TamuAnova::printtable_twoway( $res ); SEE ALSO
info tamu_anova AUTHOR
Vincent Danjean, <Vincent.Danjean@ens-lyon.org> COPYRIGHT AND LICENSE
Copyright (C) 2006 by Vincent Danjean This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2012-05-25 Math::TamuAnova(3pm)

Check Out this Related Man Page

Math::BigInt::FastCalc(3pm)				 Perl Programmers Reference Guide			       Math::BigInt::FastCalc(3pm)

NAME
Math::BigInt::FastCalc - Math::BigInt::Calc with some XS for more speed SYNOPSIS
Provides support for big integer calculations. Not intended to be used by other modules. Other modules which sport the same functions can also be used to support Math::BigInt, like Math::BigInt::GMP or Math::BigInt::Pari. DESCRIPTION
In order to allow for multiple big integer libraries, Math::BigInt was rewritten to use library modules for core math routines. Any module which follows the same API as this can be used instead by using the following: use Math::BigInt lib => 'libname'; 'libname' is either the long name ('Math::BigInt::Pari'), or only the short version like 'Pari'. To use this library: use Math::BigInt lib => 'FastCalc'; Note that from Math::BigInt v1.76 onwards, FastCalc will be loaded automatically, if possible. STORAGE
FastCalc works exactly like Calc, in stores the numbers in decimal form, chopped into parts. METHODS
The following functions are now implemented in FastCalc.xs: _is_odd _is_even _is_one _is_zero _is_two _is_ten _zero _one _two _ten _acmp _len _inc _dec __strip_zeros _copy LICENSE
This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. AUTHORS
Original math code by Mark Biggar, rewritten by Tels <http://bloodgate.com/> in late 2000. Separated from BigInt and shaped API with the help of John Peacock. Fixed, sped-up and enhanced by Tels http://bloodgate.com 2001-2003. Further streamlining (api_version 1 etc.) by Tels 2004-2007. Bug-fixing by Peter John Acklam <pjacklam@online.no> 2010-2011. SEE ALSO
Math::BigInt, Math::BigFloat, Math::BigInt::GMP, Math::BigInt::FastCalc and Math::BigInt::Pari. perl v5.18.2 2014-01-06 Math::BigInt::FastCalc(3pm)
Man Page