Keil™, An ARM® Company

Cx51 User's Guide

On-Line Manuals

Cx51 User's Guide

Cx51 Introduction
Compiling Programs
Language Extensions
Preprocessor
Advanced Programming
8051 Derivatives
Error Messages
Library Reference
Library Files
Source Code
Standard Types
jmp_buf
size_t
va_list
wchar_t
Macros
CBYTE
CWORD
DBYTE
DWORD
FARRAY
FCARRAY
FCVAR
FVAR
PBYTE
PWORD
XBYTE
XWORD
Routines By Category
Buffer Manipulation Routines
Character Routines
Data Conversion Routines
Intrinsic Routines
Math Routines
Memory Allocation Routines
Stream I/O Routines
String Routines
Variable Length Argument Routines
Miscellaneous Routines
Include Files
SFR Definitions
80c517.h
absacc.h
assert.h
ctype.h
float.h
intrins.h
limits.h
math.h
rtx51tny.h
setjmp.h
stdarg.h
stddef.h
stdio.h
stdlib.h
string.h
Reference
_chkfloat_
_crol_
_cror_
_getkey
_irol_
_iror_
_lrol_
_lror_
_nop_
_pop_
_push_
_testbit_
_tolower
_toupper
abs
acos
acos517
asin
asin517
assert
atan
atan2
atan517
atof
atof517
atoi
atol
cabs
calloc
ceil
cos
cos517
cosh
exp
exp517
fabs
floor
fmod
free
getchar
gets
init_mempool
isalnum
isalpha
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
isxdigit
labs
log
log10
log10517
log517
longjmp
malloc
memccpy
memchr
memcmp
memcpy
memmove
memset
modf
offsetof
pow
printf
printf517
putchar
puts
rand
realloc
scanf
scanf517
setjmp
sin
sin517
sinh
sprintf
sprintf517
sqrt
sqrt517
srand
sscanf
sscanf517
strcat
strchr
strcmp
strcpy
strcspn
strlen
strncat
strncmp
strncpy
strpbrk
strpos
strrchr
strrpbrk
strrpos
strspn
strstr
strtod
strtod517
strtok
strtol
strtoul
switchbank
tan
tan517
tanh
toascii
toint
tolower
toupper
ungetchar
va_arg
va_end
va_start
vprintf
vsprintf
Appendix

cos517

Summary 
#include <80c517.h>

float cos517 (
  float x);      /* number to calculate cosine for */
Description The cos517 function calculates the cosine of the floating-point value x. The value of x must be between -65535 and 65535. Values outside this range result in an NaN error.

Note

  • This routine uses the arithmetic unit of the Infineon C517x/C509 to provide accelerated execution speed. Do not use this routine with a CPU that does not support this feature.
Return Value The cos517 function returns the cosine for the value x.
See Also cos, sin517, sinh, tan517, tanh
Example 
#include <80c517.h>
#include <stdio.h> /* for printf */

void tst_cos (void) {
  float x;
  float y;

  for (x = 0; x < (2 * 3.1415); x += 0.1) {
    y = cos517 (x);

    printf ("COS517(%f) = %f\n", x, y);
  }
}