StrictMath.Acos(Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the arc cosine of a value; the returned angle is in the range 0.
[Android.Runtime.Register("acos", "(D)D", "")]
public static double Acos (double a);
[<Android.Runtime.Register("acos", "(D)D", "")>]
static member Acos : double -> double
Parameters
- a
- Double
the value whose arc cosine is to be returned.
Returns
the arc cosine of the argument.
- Attributes
Remarks
Returns the arc cosine of a value; the returned angle is in the range 0.0 through pi. Special case: <ul><li>If the argument is NaN or its absolute value is greater than 1, then the result is NaN. <li>If the argument is 1.0
, the result is positive zero. </ul>
Java documentation for java.lang.StrictMath.acos(double)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.