|
|
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: 2450 (0x992)
Types: TextFile
Names: »V«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
package Flt_Math_Lib is
-- This is an interface package to the VAX/VMS RTL Mathematical
-- Library routines. Details on the routines can be found in
-- the VAX/VMS Run-Time Library Reference Manual. (See MTH$ routines.)
-- Square root
--
function Sqrt (A : Float) return Float;
-- Natural logarithm - log base e (A)
--
function Log (A : Float) return Float;
-- Common logarithm - log base 10 (A)
--
function Log10 (A : Float) return Float;
-- Base 2 logarithm - log base 2 (A) *** not in FORTRAN
--
function Log2 (A : Float) return Float;
-- Exponential
--
function Exp (A : Float) return Float;
-- Sine, cosine, and tangent of an angle given in radians
--
function Sin (A : Float) return Float;
function Cos (A : Float) return Float;
function Tan (A : Float) return Float;
-- Arc sine, arc cosine, and arc tangent - return an angle
-- expressed in radians
--
function Asin (A : Float) return Float;
function Acos (A : Float) return Float;
function Atan (A : Float) return Float;
-- Arc tangent with two parameters - Arc Tan (A1/A2) - returns
-- an angle expressed in radians
--
function Atan2 (A1, A2 : Float) return Float;
-- Hyperbolic sine, cosine, and tangent of an angle in radians
--
function Sinh (A : Float) return Float;
function Cosh (A : Float) return Float;
function Tanh (A : Float) return Float;
-- Trigonometric functions for angles expressed in degrees
--
function Sind (A : Float) return Float;
function Cosd (A : Float) return Float;
function Tand (A : Float) return Float;
function Asind (A : Float) return Float;
function Acosd (A : Float) return Float;
function Atand (A : Float) return Float;
function Atan2d (A1, A2 : Float) return Float;
-- Exceptions: The following exceptions are raised by various
-- RTL math library routines. See the VAX/VMS Run-Time Library
-- Reference Manual for details.
Roprand : exception; -- Reserved operand fault
Invargmat : exception; -- Invalid argument
Floovemat : exception; -- Floating point overflow in Math Library
Floundmat : exception; -- Floating point underflow in Math Library
Logzerneg : exception; -- Logarithm of zero or negative value
Squrooneg : exception; -- Square root of a negative number
procedure Finalize;
end Flt_Math_Lib;