Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

fegetround(3) [osx man page]

FEGETROUND(3)						   BSD Library Functions Manual 					     FEGETROUND(3)

NAME
fegetround, fesetround -- functions providing access to the floating-point rounding mode. SYNOPSIS
#include <fenv.h> #pragma STDC FENV_ACCESS ON int fegetround(void); int fesetround(int round); DESCRIPTION
These functions provide control of floating-point rounding direction modes. The fegetround() function gets the current rounding direction. It returns the value of the rounding direction macro representing the current rounding direction, or a negative value if either there is no corresponding macro or if the rounding direction is not determinable. The fesetround() function sets the rounding direction to be that specified by the argument round. If the argument is not equal to the value of one of the rounding direction macros, the rounding direction is not changed. It returns zero if and only if the requested rounding direc- tion was established. SEE ALSO
fenv(3), feclearexcept(3), fegetenv(3), fegetexceptflag(3), feholdexcept(3), fesetenv(3), feraiseexcept(3), fesetexceptflag(3), feraiseexcept(3), feupdateenv(3) STANDARDS
These functions conform to ISO/IEC 9899:TC3. BSD
May 9, 2011 BSD

Check Out this Related Man Page

FEGETROUND(3)						   BSD Library Functions Manual 					     FEGETROUND(3)

NAME
fegetround, fesetround -- functions providing access to the floating-point rounding mode. SYNOPSIS
#include <fenv.h> #pragma STDC FENV_ACCESS ON int fegetround(void); int fesetround(int round); DESCRIPTION
These functions provide control of floating-point rounding direction modes. The fegetround() function gets the current rounding direction. It returns the value of the rounding direction macro representing the current rounding direction, or a negative value if either there is no corresponding macro or if the rounding direction is not determinable. The fesetround() function sets the rounding direction to be that specified by the argument round. If the argument is not equal to the value of one of the rounding direction macros, the rounding direction is not changed. It returns zero if and only if the requested rounding direc- tion was established. SEE ALSO
fenv(3), feclearexcept(3), fegetenv(3), fegetexceptflag(3), feholdexcept(3), fesetenv(3), feraiseexcept(3), fesetexceptflag(3), feraiseexcept(3), feupdateenv(3) STANDARDS
These functions conform to ISO/IEC 9899:TC3. BSD
May 9, 2011 BSD
Man Page

11 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

hmm

I'd like to learn more about Unix, can any of you guys gimmie something or point me in the right direction? (1 Reply)
Discussion started by: Jace
1 Replies

2. UNIX for Advanced & Expert Users

Home directory different console vs. telnet

Hello, One of the customers I suppport has a interesting problem I've never seen. I've searched the forums and found nothing relevant, so I'm hoping somebody can point me in the right direction. He is running Redhat Enterprise Linux 3 on a Dell PC. He also uses Sun workstations. He has a... (1 Reply)
Discussion started by: rhfrommn
1 Replies

3. UNIX for Dummies Questions & Answers

Command to replace character

I've been googling for the following for the past few weeks several times, but haven't yet come across something that I could easily grasp. Can someone point me in the right direction please? I'm trying to replace a character in file names, i.e. the character is a period, and I want to replace... (5 Replies)
Discussion started by: HLee1981
5 Replies

4. Shell Programming and Scripting

direction symbol in a variable as part of the command

Hi, How can I get this to work? #!/bin/ksh if ; then direction=">>" else direction=">" fi cat some_file_name $direction temp.txt exit This shell script is not happy with using "$direction" opposed to ">" or ">>". Thanks. (5 Replies)
Discussion started by: peterloo
5 Replies

5. Shell Programming and Scripting

Rounding off the value of Floating point value

Hello, i have some variables say: x=1.4 y=3.7 I wish to round off these values to : x = 2 (after rounding off) y = 4 (after rounding off) I am stuck. Please help. (7 Replies)
Discussion started by: damansingh
7 Replies

6. Shell Programming and Scripting

removing and rounding up decimals

Hi Experts, I have a command that gives me the output as below root@ckpgpay11core> cat sara | awk '{ sum += $1} ; END { print sum }' | awk {'print $1/90'} 8.88889 how do i remove the decimal spaces so that the figure will round itself to 9? Thanks. (3 Replies)
Discussion started by: aismann
3 Replies

7. Shell Programming and Scripting

sorting question......

HI, I have been racking my brain for a while on this..... was hoping one of the guru's could point me in the right direction.... Basically I have the following data in a file : ---- 2009-01-01 10665 Begin 02:25:23 2009-01-02 10665 Begin 20:54:11 2009-01-03 10665 Begin 05:31:17... (4 Replies)
Discussion started by: mashy
4 Replies

8. Shell Programming and Scripting

PERL - rounding fractional number

It seems that perl sprintf uses the round-to-even method: foreach my $i ( 0.5, 1.5, 2.5, 3.5 ) { printf "$i -> %.0f\n", $i; } __END__ 0.5 -> 0 1.5 -> 2 2.5 -> 2 3.5 -> 4 4.5 -> 4 Where we probably wants to use round-half-up, i.e. output should be as below: 0.5 -> 1 1.5 -> 2... (8 Replies)
Discussion started by: ganapati
8 Replies

9. UNIX for Dummies Questions & Answers

Variables question

Hi I am trying to find were to look for definitions of these variables; $0, $1, $2, $#, $$ , $*. I am not having much luck with my searching. Can anyone point me in the right direction? Thanks, Doug (3 Replies)
Discussion started by: Reddoug
3 Replies

10. UNIX for Dummies Questions & Answers

Multiple line duplicates

I'm trying to find the text that occurs for both numbers not just one, I'm sure there's an easy way to do this but I can't see it. Can someone point me in the right direction? Not just give me an answer without explanation --> I want to learn. myText file: xyc 1 xyd 1 xye 1 xyf 1 xyf 1 xyf... (4 Replies)
Discussion started by: maximus73
4 Replies

11. UNIX for Dummies Questions & Answers

How to restrict Rounding using Printf?

Hello, I am using bash shell on Linux OS, May i please know why is it rounding for big numbers but not for others, is there a workaround to print it as it is with out round off? printf '%'\''.2f\n' 9999999999999999999.99 10,000,000,000,000,000,000.00 printf '%'\''.2f\n' 99999999999999.99... (1 Reply)
Discussion started by: Ariean
1 Replies