I need some help, I am running this code to load values into the $ArrayofCompareHex [$g] array. Currently it is not working. The $comparevalue gets the correct value but the value is not past into the array. Here is a portion of my code. Any ideas
230 my $g =0;
231 for ($g = 0; $g < $mps; ++$g)
{
239 $value = hex($ArrayofInput [$g]);
240 $ArrayofInputHex [$g] = $value;
241 $comparevalue = hex($ArrayofCompare [$g]);
242 $ArrayofCompareHex [$g] =$comparevalue;
}
thanks in advance
