From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6e70c13232dc4a26 X-Google-Attributes: gid103376,public From: dsmith@clark.net (Doug Smith) Subject: Re: logarithms on ada Date: 1997/03/05 Message-ID: #1/1 X-Deja-AN: 223321557 References: <5fcqrs$ius@panther.Gsu.EDU> <01bc28ca$126a6a40$46fd1fcc@p5120.bda> Organization: Clark Internet Services, Inc. Newsgroups: comp.lang.ada Date: 1997-03-05T00:00:00+00:00 List-Id: In article , dewar@merv.cs.nyu.edu (Robert Dewar) wrote: > iBob Klungle said > > < with Ada.Numerics.Aux;>> > > this is bad advice. Ada.Numerics.Aux is an internal, non-standard package > that should not be used by user programs. Instead look at the RM and use > the standard math packages. This is a case where beginners have to understand generics and hunt through the LRM to find simple operations. Of course, I found it easily using WebAda's Surfing feature <8^O or for the reference page only: The answer for Float is: Ada.Numerics.Elementary_Functions.Log as in function Log (X : Float) return Float; function Log (X, Base : Float) return Float; Doug