Ada 编程/库/Ada.Numerics.Generic Complex Elementary Functions
外观
此语言特性从 Ada 95 开始可用。
Ada.Numerics.Generic_Complex_Elementary_Functions 是 预定义语言环境 的一个单元,从 Ada 95 开始。
-- 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 -- -------------------------------------------------------------------------with
Ada.Numerics.Generic_Complex_Types;generic
with
package
Complex_Typesis
new
Ada.Numerics.Generic_Complex_Types (<>);package
Ada.Numerics.Generic_Complex_Elementary_Functionsis
pragma
Pure (Generic_Complex_Elementary_Functions);function
Sqrt (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Log (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Exp (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Exp (X :in
Complex_Types.Imaginary)return
Complex_Types.Complex;function
"**" (Left :in
Complex_Types.Complex; Right :in
Complex_Types.Complex)return
Complex_Types.Complex;function
"**" (Left :in
Complex_Types.Complex; Right :in
Complex_Types.Real'Base)return
Complex_Types.Complex;function
"**" (Left :in
Complex_Types.Real'Base; Right :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Sin (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Cos (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Tan (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Cot (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arcsin (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arccos (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arctan (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arccot (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Sinh (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Cosh (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Tanh (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Coth (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arcsinh (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arccosh (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arctanh (X :in
Complex_Types.Complex)return
Complex_Types.Complex;function
Arccoth (X :in
Complex_Types.Complex)return
Complex_Types.Complex;end
Ada.Numerics.Generic_Complex_Elementary_Functions;
外部示例
[编辑源代码]- 在以下位置搜索
Ada.Numerics.Generic_Complex_Elementary_Functions
的示例:Rosetta Code,GitHub (gists),任何 Alire 包 或 本维基教科书。 - 在以下位置搜索与
Ada.Numerics.Generic_Complex_Elementary_Functions
相关的帖子:Stack Overflow,comp.lang.ada 或 任何 Ada 相关页面。
FSF GNAT
- 规范:a-ngcefu.ads
- 主体:a-ngcefu.adb
drake