abs method

FVector abs()

Calculates the absolute value of each element (immutable)

Implementation

FVector abs() {
  FVector newVec = FVector.zero(nRows);
  for (int i = 0; i < columnData.length; ++i)
    newVec.columnData[i] = columnData[i].abs();
  return newVec;
}