Atan メソッド

解説
指定数値のアークタンジェントを返します。

書式
Function Atan (number As Double) As Double

パラメーター

  • number
    角度のタンジェント (実数値)

戻り値
指定した数値のアークタンジェント

参照
Atan2 メソッド

Atan 使用例
VB 例:

Dim angle As Doubleangle = m_spel.Atan(.7)  

C# 例:

double angle;  
  
angle = m_spel.Atan(.7);