/// <summary> /// Returns the vector raised to the specified power. /// </summary> /// <param name="v">Vector to raise to the power.</param> /// <param name="power">Double representing the power value.</param> /// <returns>Vector.</returns> public static Vector Pow(this Vector v, double power) { return(Vector.Pow(v, power)); }