The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Text::NASA_Ames::DataEntry - The simples NASA_Ames data-presentation

SYNOPSIS

 my $de = new Text::NASA_Ames::DataEntry({X => [1,2,3],
                                    V => [3.3,3],
                                    A => [1.4, "S"]});
 my @x = @{ $de->X };
 my @a = @{ $de->A };
 my @v = @{ $de->V };

DESCRIPTION

A dataentry consists of the independent variables X, the auxiliary variables A, and the primary dependent variables V.

PUBLIC METHODS

all methods return list-references

new ({X => [X1...Xs], A => [A1...Ak], V => [V1..Vn]})

set the data

X

get a list of the independent variable per point

V

get a list of the primary dependent variables for point X

A

get a list of the auxiliary variables for point X