getV2 function

double getV2(
  1. double y
)

Implementation

double getV2(double y) {
  return Math.acos(y) * (1 / Math.pi);
}