| Text-NASA_Ames documentation | view source | Contained in the Text-NASA_Ames distribution. |
Text::NASA_Ames::DataEntry - The simples NASA_Ames data-presentation
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 };
A dataentry consists of the independent variables X, the auxiliary variables A, and the primary dependent variables V.
all methods return list-references
set the data
get a list of the independent variable per point
get a list of the primary dependent variables for point X
get a list of the auxiliary variables for point X
| Text-NASA_Ames documentation | view source | Contained in the Text-NASA_Ames distribution. |