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::Polygon::Convex(3pm)				User Contributed Perl Documentation				Math::Polygon::Convex(3pm)

NAME
Math::Polygon::Convex - Collection of convex algorithms INHERITANCE
Math::Polygon::Convex is a Exporter SYNOPSIS
use Math::Polygon::Convex qw/chainHull_2D/; my @points = ( [1,2], [2,4], [5,7], [1,2] ); my $poly = chainHull_2D @points; DESCRIPTION
The "convex polygon" around a set of points, is the polygon with a minimal size which contains all points. This package contains one convex calculation algorithm, but may be extended with alternative implementations in the future. FUNCTIONS
chainHull_2D(POINTS) Each POINT is an ARRAY of two elements: the X and Y coordinate of a point. Returned is the enclosing convex Math::Polygon object. Algorithm by Dan Sunday, http://geometryalgorithms.com/Archive/algorithm_0109/algorithm_0109.htm SEE ALSO
This module is part of Math-Polygon distribution version 1.02, built on September 19, 2011. Website: http://perl.overmeer.net/geo/ LICENSE
Copyrights 2004,2006-2011 by Mark Overmeer. For other contributors see ChangeLog. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.12.4 2011-09-19 Math::Polygon::Convex(3pm)
Man Page

11 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Perl - Programmers manual online?

I have never programmed in Perl (insert laughter, mock, etc. here ____) - so I need a sort of "Programming in Perl" covering the basics. I now have two Perl books, one is a 5 volume Unix resource kit, the other is "Mastering algorithms with Perl" - none of them explains how to produce "hello,... (11 Replies)
Discussion started by: AtleRamsli
11 Replies

2. HP-UX

Ftp Download Problem

FROM WINDOWS , WHILE GETTING DATA FROM HP-UNIX SERVER USING FTP, I AM ABLE TO GET DATA ONLY LESS THAN 4GB FILE, PLZ HELP ME HOW TO GET MORE MORE THAN 4GB FILE. (4 Replies)
Discussion started by: niranjan
4 Replies

3. Shell Programming and Scripting

Editor dependent error?

Hi all, i did typed the following code in vi and executed it. #!/bin/sh //notice the blank line here. DATA=test echo "$DATA" There was no problem. I then deleted the file using the rm command. I used ultraedit typed in the same file. , FTP it in and i got the following output :... (2 Replies)
Discussion started by: new2ss
2 Replies

4. Shell Programming and Scripting

perl - how come this script works?

#!/usr/bin/perl open (DATA, file.txt); @array = <DATA>; close (DATA); open (DATA, ">$file.txt"); for (@array) { s/text/replace text/; push(@contents,$_); } seek(DATA, 0, 0); print DATA (@contents); close(DATA); could someone please explain how this works. i've been... (3 Replies)
Discussion started by: mjays
3 Replies

5. Shell Programming and Scripting

egrep not giving desired results

I have written a shell script which looks like below: grep -v ',0,' ./DATA/abc.001 > ./DATA/abc.mid egrep $GREPSEARCH ./DATA/ebc.mid > ./DATA/abc.cut the variable GREPSEARCH has values like the below: ... (3 Replies)
Discussion started by: igandu
3 Replies

6. HP-UX

Using TOP

Hey guys, the top format in HP-UX has the size which is the total virtual size and the res which is the resident size. What are these size and res? (1 Reply)
Discussion started by: sbn
1 Replies

7. Shell Programming and Scripting

Excluding the records with data only occuring once in first column

Hello all, I need help with excluding the rows in which the data in the first column occur only once. For example; DATA-1 8374 XX YY DATA-1 9838 AB DD DATA-1 8377 CC XY DATA-2 8737 AB DD DATA-3 7626 DC DD DATA-3 8722 AB RE... (2 Replies)
Discussion started by: digipak
2 Replies

8. Shell Programming and Scripting

Print Selection of Line between two Identifiers.

I have a following containing DATA in the following format: DATA....------ --------------- -------------- DATA.....------ -------------------- ------------------ DATA....------ --------------- -------------- I want to extract the selective DATA in between identifiers and ... (4 Replies)
Discussion started by: parshant_bvcoe
4 Replies

9. Shell Programming and Scripting

Help with extract info if fulfill condition required

Input file (4 DATA record shown in this case): DATA AA0110 ACCESSION AA0110 VERSION AA0110 GI:157412239 FEATURES Location/Qualifiers length 1..1170 1..1700 /length="1170" position ... (5 Replies)
Discussion started by: perl_beginner
5 Replies

10. Shell Programming and Scripting

Convert rows to columns

I am looking to print the data in columns and after every 3 words it should be a new row. cat example.out | awk 'END { for (i = 0; ++i < m;) print _;print _ }{ _ = _ x ? _ OFS $1 : $1}' m=1| grep -i INNER I am looking to print in a new line after every 3 words. ... (2 Replies)
Discussion started by: lazydev
2 Replies

11. Shell Programming and Scripting

Text manipulation with sed - Advanced technic

Hello everybody, I have the following input file: START ANALYSIS 1 DATA LINE DATA LINE DATA LINE DATA LINE Libray /home/me/myLibrary Source library_name_AAAAA DATA LINE DATA LINE DATA LINE BEGIN SOURCE ANALYSIS Function A Function B Function C Function D (4 Replies)
Discussion started by: namnetes
4 Replies