< Ada Programming < Libraries
![](../../../I/Ada_Mascot_with_slogan.svg.png.webp)
Ada. Time-tested, safe and secure.
This language feature is available from Ada 95 on. Ada.Numerics.Generic_Elementary_Functions is a unit of the Predefined Language Environment since Ada 95.
The generic package Ada.Numerics.Generic_Elementary_Functions defines various mathematical functions for floating point type. Being generic it can not only be used for predefined floating point types but also for any user defined floating type.
Usage
There is an extensive usage guide in Ada Programming/Mathematical calculations. Here the relevant extract:
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);
Specification
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <reznikmm@gmail.com> -- 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;
See also
Wikibook
Ada Reference Manual
Ada 95
Ada 2005
Ada 2012
Open-Source Implementations
FSF GNAT
- Specification: a-ngelfu.ads
- Body: a-ngelfu.adb
drake
- Specification: numerics/a-ngelfu.ads
- Body: numerics/a-ngelfu.adb
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.