Help for this page

Select Code to Download


  1. or download this
    # data is a pointer
    $data = ABC::readdatafile($filename);
    ...
    # my goal is to be able to do use this and features like:
    $high = $data->get_high($signal);
    $low = $data->get_low($signal);
    
  2. or download this
    #(inside the module) 
    my $ref = \@data; 
    return($ref);