MathF.Asin()方法用于返回正弦作为单个(或浮点)值参数给出的角度。如果参数为NaN,则结果将为NaN。
用法: public static float Asin (float x);
Here, it takes a standard floating point number.
返回值:此方法返回以弧度为单位的角度θ,其类型为System.Single,其值小于Single.MaxValue。
下面的程序将说明上述方法的使用:
示例1:
// C# program to demonstrate the
// MathF.Asin(Single) Method
using System;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing value
float value = 0.7f;
// getting absolute angle value in float
// using Asin() method
float result = MathF.Asin(value);
// Display the value
Console.WriteLine("Angle is {0}", result);
}
}
输出:
Angle is 0.7753975
示例2:
// C# program to demonstrate the
// MathF.Asin(Single) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
get(0.19f);
get(Single.NaN);
get(Single.NegativeInfinity);
get(Single.PositiveInfinity);
}
// defining get() method
public static void get(float value)
{
// getting absolute angle value in float
// using Asin() method
float result = MathF.Asin(value);
// Display the value
Console.WriteLine("Asin({0}) will be {1}",
value, result);
}
}
输出:
Asin(0.19) will be 0.1911621 Asin(NaN) will be NaN Asin(-Infinity) will be NaN Asin(Infinity) will be NaN
相关用法
- C# MathF.Exp()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Cbrt()用法及代码示例
- C# Char.GetTypeCode()用法及代码示例
- C# Char.GetHashCode()用法及代码示例
- C# MathF.Atan()用法及代码示例
- C# BitArray.RightShift()用法及代码示例
- C# BitArray.LeftShift()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 MathF.Asin() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。