System.Math.Tan

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function Tan(const X: Single): Single;
function Tan(const X: Double): Double;
function Tan(const X: Extended): Extended;

C++

extern DELPHI_PACKAGE float __fastcall Tan(const float X)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.Math.pas
System.Math.hpp
System.Math System.Math

説明

X の正接を返します。

Tan は X(ラジアン単位)の正接を返します。 Tan(X) = Sin(X) / Cos(X) です。

関連項目