13a8617a8SJordan K. Hubbard.\" Copyright (c) 1991 The Regents of the University of California. 23a8617a8SJordan K. Hubbard.\" All rights reserved. 33a8617a8SJordan K. Hubbard.\" 43a8617a8SJordan K. Hubbard.\" Redistribution and use in source and binary forms, with or without 53a8617a8SJordan K. Hubbard.\" modification, are permitted provided that the following conditions 63a8617a8SJordan K. Hubbard.\" are met: 73a8617a8SJordan K. Hubbard.\" 1. Redistributions of source code must retain the above copyright 83a8617a8SJordan K. Hubbard.\" notice, this list of conditions and the following disclaimer. 93a8617a8SJordan K. Hubbard.\" 2. Redistributions in binary form must reproduce the above copyright 103a8617a8SJordan K. Hubbard.\" notice, this list of conditions and the following disclaimer in the 113a8617a8SJordan K. Hubbard.\" documentation and/or other materials provided with the distribution. 123a8617a8SJordan K. Hubbard.\" 3. All advertising materials mentioning features or use of this software 133a8617a8SJordan K. Hubbard.\" must display the following acknowledgement: 143a8617a8SJordan K. Hubbard.\" This product includes software developed by the University of 153a8617a8SJordan K. Hubbard.\" California, Berkeley and its contributors. 163a8617a8SJordan K. Hubbard.\" 4. Neither the name of the University nor the names of its contributors 173a8617a8SJordan K. Hubbard.\" may be used to endorse or promote products derived from this software 183a8617a8SJordan K. Hubbard.\" without specific prior written permission. 193a8617a8SJordan K. Hubbard.\" 203a8617a8SJordan K. Hubbard.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 213a8617a8SJordan K. Hubbard.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 223a8617a8SJordan K. Hubbard.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 233a8617a8SJordan K. Hubbard.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 243a8617a8SJordan K. Hubbard.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 253a8617a8SJordan K. Hubbard.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 263a8617a8SJordan K. Hubbard.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 273a8617a8SJordan K. Hubbard.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 283a8617a8SJordan K. Hubbard.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 293a8617a8SJordan K. Hubbard.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 303a8617a8SJordan K. Hubbard.\" SUCH DAMAGE. 313a8617a8SJordan K. Hubbard.\" 323a8617a8SJordan K. Hubbard.\" from: @(#)cos.3 5.1 (Berkeley) 5/2/91 337f3dea24SPeter Wemm.\" $FreeBSD$ 343a8617a8SJordan K. Hubbard.\" 353a8617a8SJordan K. Hubbard.Dd May 2, 1991 363a8617a8SJordan K. Hubbard.Dt COS 3 373a8617a8SJordan K. Hubbard.Os 383a8617a8SJordan K. Hubbard.Sh NAME 397a15a32aSJordan K. Hubbard.Nm cos , 407a15a32aSJordan K. Hubbard.Nm cosf 417a15a32aSJordan K. Hubbard.Nd cosine functions 423a8617a8SJordan K. Hubbard.Sh SYNOPSIS 4332eef9aeSRuslan Ermilov.In math.h 443a8617a8SJordan K. Hubbard.Ft double 453a8617a8SJordan K. Hubbard.Fn cos "double x" 467a15a32aSJordan K. Hubbard.Ft float 472d2781ffSBruce Evans.Fn cosf "float x" 483a8617a8SJordan K. Hubbard.Sh DESCRIPTION 493a8617a8SJordan K. HubbardThe 503a8617a8SJordan K. Hubbard.Fn cos 517a15a32aSJordan K. Hubbardand the 527a15a32aSJordan K. Hubbard.Fn cosf 537a15a32aSJordan K. Hubbardfunctions compute the cosine of 543a8617a8SJordan K. Hubbard.Fa x 553a8617a8SJordan K. Hubbard(measured in radians). 563a8617a8SJordan K. HubbardA large magnitude argument may yield a result with little or no 573a8617a8SJordan K. Hubbardsignificance. 583a8617a8SJordan K. HubbardFor a discussion of error due to roundoff, see 593a8617a8SJordan K. Hubbard.Xr math 3 . 603a8617a8SJordan K. Hubbard.Sh RETURN VALUES 613a8617a8SJordan K. HubbardThe 623a8617a8SJordan K. Hubbard.Fn cos 637a15a32aSJordan K. Hubbardand the 647a15a32aSJordan K. Hubbard.Fn cosf 657a15a32aSJordan K. Hubbardfunctions return the cosine value. 663a8617a8SJordan K. Hubbard.Sh SEE ALSO 673a8617a8SJordan K. Hubbard.Xr acos 3 , 6875141cc9SWolfram Schneider.Xr asin 3 , 693a8617a8SJordan K. Hubbard.Xr atan 3 , 703a8617a8SJordan K. Hubbard.Xr atan2 3 , 713a8617a8SJordan K. Hubbard.Xr cosh 3 , 7275141cc9SWolfram Schneider.Xr math 3 , 7375141cc9SWolfram Schneider.Xr sin 3 , 7475141cc9SWolfram Schneider.Xr sinh 3 , 7575141cc9SWolfram Schneider.Xr tan 3 , 7675141cc9SWolfram Schneider.Xr tanh 3 773a8617a8SJordan K. Hubbard.Sh STANDARDS 783a8617a8SJordan K. HubbardThe 793a8617a8SJordan K. Hubbard.Fn cos 803a8617a8SJordan K. Hubbardfunction conforms to 81588a200cSRuslan Ermilov.St -isoC . 82