Sponsored Content
Full Discussion: Floating Point Division
Top Forums Shell Programming and Scripting Floating Point Division Post 25164 by gsatch on Thursday 25th of July 2002 03:54:22 PM
Old 07-25-2002
Floating Point Division

Does anyone have a simple way of doing floating point ("fp") division? For example, if I divide 3 by 5, I can get 0.6. The built-in calc (`bc`) will perform fp multiplication, but not division, at least not straight-up (i.e., starting bc and just typing in 3/5).

I am trying to do this using KSH on HP-UX 11.0 or Solaris 8.

Any help will be GREATLY appreciated (have already spent more time that I want to admit to trying to find a simple solution).

Thank you!
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

floating point addition

hi, :) I have a file like this 10.456 123.567 456.876 234.987 ........ ....... What i want to do is ia have to add all those numbers and put the result in some other file. Any help pls. cheers RRK (8 Replies)
Discussion started by: ravi raj kumar
8 Replies

2. Programming

floating point problem

Hi all! Hi all! I am working with a problem to find the smallest floating point number that can be represented. I am going in a loop ,stating with an initial value of 1.0 and then diving it by 10 each time thru the loop. So the first time I am getting o.1 which I wanted.But from the next... (4 Replies)
Discussion started by: vijlak
4 Replies

3. Shell Programming and Scripting

Floating Division in Linux

Hi everyone , have a great day given below is the excerpt of code k=`grep -i success /var/seamless/spool/tdr/ERS_$date1$time1* | wc -l`; l=`grep -i fail /var/seamless/spool/tdr/ERS_$date1$time1* | wc -l`; m=`grep -i entertain /var/seamless/spool/tdr/ERS_$date1$time1* | wc -l`; n=$(($k+$l))... (3 Replies)
Discussion started by: Dastard
3 Replies

4. 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

5. Programming

Floating point error in C

Hi, see the simple code below double i; i=8080.9940; printf(" val :%.30f\n",i); output i m getting is val :8080.993999999999700000000000000 when i m expecting val :8080.9940 what happens?how can i avoid it? thanks... (2 Replies)
Discussion started by: Hara
2 Replies

6. Linux

Floating point exception !!!

Hi, I have linux fedora 4 ver., 2.6 kernal. And qmail & mysql & samba servers are already configured on this server. When I try to install any package like squidguard ,dansguardian,webmin,rsnapshots with command rpm -ivh . It is giving error as “Floating point exception" Snap View is... (3 Replies)
Discussion started by: ssk01
3 Replies

7. Linux

Floating Point Exception

Hi, I am compiling "HelloWorld" C progam on 32-bit CentOS and i want to execute it on 64-bit CentOS architecture. For that i copied the a.out file from 32-bit to 64-bit machine, but while executing a.out file on 64bit machine I am getting "Floating point exception error". But we can run... (3 Replies)
Discussion started by: Mandar123
3 Replies

8. Programming

Floating point Emulator

what is floating point emulator(FPE)? where and why it is used? (1 Reply)
Discussion started by: pgmfourms
1 Replies

9. Programming

Floating Point

Anyone help me i cant found the error of floating point if needed, i added the code complete #include <stdio.h> #include <string.h> #include <stdlib.h> #include <ctype.h> typedef struct { int hh; int mm; int ss; char nom; int punt; }cancion; typedef struct... (9 Replies)
Discussion started by: Slasho
9 Replies

10. Shell Programming and Scripting

How to perform floating division in shell script?

I want to perform the below division operation in shell script and round the value. val1=6000 val2=5000 res=val1/val2 ----> 1.2---> Round to 2 Please help. (3 Replies)
Discussion started by: vel4ever
3 Replies
write_rnd(3)						     Library Functions Manual						      write_rnd(3)

NAME
write_rnd, read_rnd - Sets and returns IEEE dynamic rounding mode for floating-point operations LIBRARY
Standard C Library (libc.so, libc.a) SYNOPSIS
#include <float.h> unsigned int write_rnd( unsigned int rnd); unsigned int read_rnd(); DESCRIPTION
The write_rnd function sets the dynamic rounding mode in the floating-point control register (fpcr) for IEEE floating-point operations and returns the previous dynamic rounding mode. Dynamic rounding mode for IEEE floating-point operations is enabled for code generated by the C compiler by specifying -fprm d to cc(1), and by using the d floating-point instruction operator in assembly language code. Specify rnd as one of the following constants defined in float.h --------------------------------------------------- Constant Meaning --------------------------------------------------- FP_RND_RZ Round toward zero (chopped rounding) FP_RND_RN Round toward nearest (normal rounding) FP_RND_RP Round toward plus infinity FP_RND_RM Round toward minus infinity --------------------------------------------------- The read_rnd function returns the current dynamic rounding mode for floating-point operations. RETURN VALUES
The write_rnd function returns the previous IEEE floating-point rounding mode. The read_rnd function returns the current IEEE floating- point rounding mode. RELATED INFORMATION
Commands: cc(1). Files: float.h. Assembly Language Programmer's Guide. Alpha Architecture Reference Manual. IEEE Standard for Binary Floating-Point Arithmetic delim off write_rnd(3)
All times are GMT -4. The time now is 11:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy