System.Math.Secant

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

Delphi

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

C++

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

プロパティ

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

説明

角度の正割を計算します。

Secant を呼び出すと、X(ラジアン単位で表した角度)の正割を取得できます。 正割は 1 / Cos(X) という式で計算されます。

関連項目