Ada 编程/库/Ada.Numerics.Generic Elementary Functions
外观
此语言功能从 Ada 95 开始提供。
Ada.Numerics.Generic_Elementary_Functions 是 预定义语言环境 自 Ada 95 以来的一部分。
通用包 Ada.Numerics.Generic_Elementary_Functions 为浮点类型定义了各种数学函数。由于它是通用的,它不仅可以用于预定义的浮点类型,还可以用于任何用户定义的浮点类型。
在 Ada 编程/数学计算 中有一个广泛的用法指南。以下是相关的摘录
with
Ada.Numerics.Generic_Elementary_Functions;procedure
Numeric_4is
type
Value_Typeis
digits
12range
-999_999_999_999.0e999 .. 999_999_999_999.0e999;package
Value_Functionsis
new
Ada.Numerics.Generic_Elementary_Functions ( Value_Type);
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <[email protected]> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual -- -------------------------------------------------------------------------generic
type
Float_Typeis
digits
<>;package
Ada.Numerics.Generic_Elementary_Functionsis
pragma
Pure (Generic_Elementary_Functions);function
Sqrt (X : Float_Type'Base)return
Float_Type'Base;function
Log (X : Float_Type'Base)return
Float_Type'Base;function
Log (X, Base : Float_Type'Base)return
Float_Type'Base;function
Exp (X : Float_Type'Base)return
Float_Type'Base;function
"**" (Left, Right : Float_Type'Base)return
Float_Type'Base;function
Sin (X : Float_Type'Base)return
Float_Type'Base;function
Sin (X, Cycle : Float_Type'Base)return
Float_Type'Base;function
Cos (X : Float_Type'Base)return
Float_Type'Base;function
Cos (X, Cycle : Float_Type'Base)return
Float_Type'Base;function
Tan (X : Float_Type'Base)return
Float_Type'Base;function
Tan (X, Cycle : Float_Type'Base)return
Float_Type'Base;function
Cot (X : Float_Type'Base)return
Float_Type'Base;function
Cot (X, Cycle : Float_Type'Base)return
Float_Type'Base;function
Arcsin (X : Float_Type'Base)return
Float_Type'Base;function
Arcsin (X, Cycle : Float_Type'Base)return
Float_Type'Base;function
Arccos (X : Float_Type'Base)return
Float_Type'Base;function
Arccos (X, Cycle : Float_Type'Base)return
Float_Type'Base;function
Arctan (Y : Float_Type'Base; X : Float_Type'Base := 1.0)return
Float_Type'Base;function
Arctan (Y : Float_Type'Base; X : Float_Type'Base := 1.0; Cycle : Float_Type'Base)return
Float_Type'Base;function
Arccot (X : Float_Type'Base; Y : Float_Type'Base := 1.0)return
Float_Type'Base;function
Arccot (X : Float_Type'Base; Y : Float_Type'Base := 1.0; Cycle : Float_Type'Base)return
Float_Type'Base;function
Sinh (X : Float_Type'Base)return
Float_Type'Base;function
Cosh (X : Float_Type'Base)return
Float_Type'Base;function
Tanh (X : Float_Type'Base)return
Float_Type'Base;function
Coth (X : Float_Type'Base)return
Float_Type'Base;function
Arcsinh (X : Float_Type'Base)return
Float_Type'Base;function
Arccosh (X : Float_Type'Base)return
Float_Type'Base;function
Arctanh (X : Float_Type'Base)return
Float_Type'Base;function
Arccoth (X : Float_Type'Base)return
Float_Type'Base;end
Ada.Numerics.Generic_Elementary_Functions;
FSF GNAT
- 规格:a-ngelfu.ads
- 主体:a-ngelfu.adb
drake