Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
round.c
Package: celp_3.2a.tar.gz [view]
Upload User: szhypcb168
Upload Date: 2007-01-06
Package Size: 2187k
Code Size: 1k
Category:
Voice Compress
Development Platform:
Unix_Linux
- /* This routine takes in a floating point number and rounds it to */
- /* the nearest integer. */
- int
- round(afloat)
- float afloat;
- {
- int rounded_int;
- /* this will truncate afloat */
- rounded_int = afloat;
- /* positive and negative numbers are handled differently */
- if (afloat < 0)
- {
- /* if the fractional part is -.5 or less round down */
- if (afloat - rounded_int <= -.5) rounded_int--;
- }
- else
- {
- /* if the fractional part is .5 or greater round up */
- if (afloat - rounded_int >= .5) rounded_int++;
- }
- return(rounded_int);
- }
- #ifdef TEST
- #include <stdio.h>
- main()
- {
- float x,y,z;
- int i;
- x = -2.000001;
- y = -2.000000;
- z = -1.999999;
- for (i=0; i<16; i++) {
- printf("%f -> %d %f -> %d %f -> %dn",
- x,round(x),y,round(y),z,round(z));
- x = x + 0.25;
- y = y + 0.25;
- z = z + 0.25;
- }
- }
- #endif