sqrt method

FVector sqrt()

Calculates the square-root of each element (immutable)

Implementation

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