From: Bram de Greve Newsgroups: comp.os.msdos.djgpp Subject: Re: newbee: sin & cos? Date: Mon, 31 Jan 2000 21:48:57 -0800 Organization: University of Ghent, Belgium Lines: 35 Message-ID: <389673C5.39135037@rug.ac.be> References: <38927312 DOT 547FADCF AT rug DOT ac DOT be> <3891F811 DOT 57B6B0BD AT geocities DOT com> <3892791C DOT BB63F17 AT rug DOT ac DOT be> <3891FE57 DOT 4CF3CF64 AT ou DOT edu> NNTP-Posting-Host: sdlna158.rug.ac.be Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.04 [en] (Win16; I) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com OK, I'm a bit late, but thanks a lot to everybody who answered my question, BUT WHAT MEANS ATAN2 AND CEIL ? btw, where can you find such information anyway? Thanks, Bram David Cleaver wrote: > Actually it is in , NOT in . > > I've pasted below some of the functions found in math.h: > > double acos(double _x); > double asin(double _x); > double atan(double _x); > double atan2(double _y, double _x); > double ceil(double _x); > double cos(double _x); > double cosh(double _x); > double sin(double _x); > double sinh(double _x); > double sqrt(double _x); > double tan(double _x); > double tanh(double _x); > > You get the picture. Hope this helps... > > -David C.