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=3.8 required=5.0 tests=BAYES_00,INVALID_MSGID, RATWARE_MS_HASH,RATWARE_OUTLOOK_NONAME 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: "Bob Klungle" Subject: Re: logarithms on ada Date: 1997/03/04 Message-ID: <01bc28ca$126a6a40$46fd1fcc@p5120.bda>#1/1 X-Deja-AN: 223056385 References: <5fcqrs$ius@panther.Gsu.EDU> Organization: B & D Associates X-NETCOM-Date: Tue Mar 04 12:27:13 PM CST 1997 Newsgroups: comp.lang.ada Date: 1997-03-04T12:27:13-06:00 List-Id: Yes. On Verdix systems you need with Math; On Meridian you need with Math_Lib; On GNAT you need with Ada.Numerics.Aux; cheers..bob > I can't find this in my ADA manual. How can I do a logarithm in > ADA? The compiler doesn't seem to understand x := log(y); > The compiler complains that log is undefined. It appears in my > main program so I don't think I have to instantiate it. Is there > a mathematics package I need to declare using "with"?