當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# MathF.Asin()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 MathF.Asin() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。