|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 2968 (0xb98)
Types: TextFile
Names: »V«
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS
└─⟦91c658230⟧ »DATA«
└─⟦458657fb6⟧
└─⟦1472c4407⟧
└─⟦this⟧
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
└─⟦fc9b38f02⟧ »DATA«
└─⟦9b46a407a⟧
└─⟦2e03b931c⟧
└─⟦this⟧
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS
└─⟦91c658230⟧ »DATA«
└─⟦458657fb6⟧
└─⟦1472c4407⟧
└─⟦3d4b48c74⟧
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
└─⟦fc9b38f02⟧ »DATA«
└─⟦9b46a407a⟧
└─⟦2e03b931c⟧
└─⟦3d4b48c74⟧
└─⟦this⟧
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS
└─⟦91c658230⟧ »DATA«
└─⟦458657fb6⟧
└─⟦1472c4407⟧
└─⟦6fef9baf9⟧
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
└─⟦fc9b38f02⟧ »DATA«
└─⟦9b46a407a⟧
└─⟦2e03b931c⟧
└─⟦6fef9baf9⟧
└─⟦this⟧
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS
└─⟦91c658230⟧ »DATA«
└─⟦458657fb6⟧
└─⟦a5bbbb819⟧
└─⟦this⟧
└─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3
└─⟦fc9b38f02⟧ »DATA«
└─⟦9b46a407a⟧
└─⟦eec0a994f⟧
└─⟦this⟧
with Elementary_Functions_Exceptions;
generic
type Float_Type is digits <>;
package Generic_Elementary_Functions is
-- from "Proposed Standard for a Generic Package of Elementary Functions
-- for Ada" ISO-IEC/JTC1/SC22/WG9 (Ada) Numerics Rapporteur Group
-- Draft 1.2, 12 December 1990
function Sqrt (X : Float_Type) return Float_Type;
function Log (X : Float_Type) return Float_Type;
function Log (X, Base : Float_Type) return Float_Type;
function Exp (X : Float_Type) return Float_Type;
function "**" (X, Y : Float_Type) return Float_Type;
function Sin (X : Float_Type) return Float_Type;
function Sin (X, Cycle : Float_Type) return Float_Type;
function Cos (X : Float_Type) return Float_Type;
function Cos (X, Cycle : Float_Type) return Float_Type;
function Tan (X : Float_Type) return Float_Type;
function Tan (X, Cycle : Float_Type) return Float_Type;
function Cot (X : Float_Type) return Float_Type;
function Cot (X, Cycle : Float_Type) return Float_Type;
function Arcsin (X : Float_Type) return Float_Type;
function Arcsin (X, Cycle : Float_Type) return Float_Type;
function Arccos (X : Float_Type) return Float_Type;
function Arccos (X, Cycle : Float_Type) return Float_Type;
function Arctan (Y : Float_Type;
X : Float_Type := 1.0) return Float_Type;
function Arctan (Y : Float_Type;
X : Float_Type := 1.0;
Cycle : Float_Type) return Float_Type;
function Arccot (X : Float_Type;
Y : Float_Type := 1.0) return Float_Type;
function Arccot (X : Float_Type;
Y : Float_Type := 1.0;
Cycle : Float_Type) return Float_Type;
function Sinh (X : Float_Type) return Float_Type;
function Cosh (X : Float_Type) return Float_Type;
function Tanh (X : Float_Type) return Float_Type;
function Coth (X : Float_Type) return Float_Type;
function Arcsinh (X : Float_Type) return Float_Type;
function Arccosh (X : Float_Type) return Float_Type;
function Arctanh (X : Float_Type) return Float_Type;
function Arccoth (X : Float_Type) return Float_Type;
Argument_Error : exception
renames Elementary_Functions_Exceptions.Argument_Error;
-- Argument_Error is raised whenever an argument is out of the
-- domain of the corresponding function:
--
-- SQRT when X < 0.0
-- LOG when X <= 0.0 , or when BASE < 0.0 or BASE = 1.0
-- "**" when X < 0.0, or when X = 0.0 and Y = 0.0
--
-- all trigonometric functions: when CYCLE <= 0.0
--
-- ARCSIN when abs X > 1.0
-- ARCCOS when abs X > 1.0
-- ARCTAN when Y = 0.0 and X /= 0.0
-- ARCCOT when Y = 0.0 and X /= 0.0
-- ARCCOSH when X <= 1.0
-- ARCTANH when abs X > 1.0
-- ARCCOTH when abs X < 1.0
end Generic_Elementary_Functions;