Tagged Questions
1
vote
1answer
41 views
L (long) postfix in boost erf(): when is needed and when not?
In the Boost implementation of erf function
in a header <boost/math/special_functions/erf.hpp> we have
result = z * 1.125 + z * 0.003379167095512573896158903121545171688L;
in the code ...
0
votes
4answers
76 views
Rounding a number to a smaller or bigger size with the same ratio
I don't know how to describe it very well (so I can't look it up) but I need help. Lets say I have 100 out of 0 to 200, how do I ratio the number to 0 to 100 so it would be like 50? Simply ratio-ing ...
1
vote
1answer
89 views
Is there any way to make sure the floating point arithmetic result the same in both linux and windows
My programe runs both in linux and windows, I have to make sure the floating point arithmetic get the same result in different OS.
Here is the code:
for (int i = 0; i < 100000; ++i)
{
float ...
-2
votes
1answer
45 views
Need help reading multiple arrays from a .txt file [closed]
Here is a sample array of numbers
12*10^3 11*10^9
13*10^4 14*10^2
25*10^3 24*10^5
14*10^6 14*10^7
my problem is that I need to turn each column into an array, and find the average ...
-1
votes
2answers
80 views
Algorithmic or Mathematical way of separating decimal from floating?
Is there any mathematical or algorithmic way of dividing a floating point number into two parts (before and after) the point.
Example:
number=456.789
before=456
after=0.789
I don't want any code ...
0
votes
2answers
56 views
seperating unspaced numbers from a string
I am trying to evaluate arithmetic expressions, with brackets ().
Eg) To evaluate
(1.6*(2.7+(4.1/3.2)*3.9))
I need to seperate the numbers and operators seperately and I tried this:
def ...
0
votes
3answers
87 views
How do I check if a double with decimals is divisible?
I'm trying to test if a number is cleanly divisible (no remainders) by another. If I compare it against an int, it works correctly:
NSTimeInterval timeElapsed = // a double goes here
// round to 3 ...
0
votes
1answer
53 views
rounding to the nearest zero, bitwise
I just wonder how can i round to the nearest zero bitwise? Previously, I perform the long division using a loop. However, since the number always divided by a number power by 2. I decide to use bit ...
1
vote
2answers
72 views
What does theta do?
So I've found this class called Vecter2f in Slick2D and inside of it there is a method called getTheta. I don't know what this does but I got the source to the method if that will help. And what use ...
1
vote
1answer
86 views
Android Floating point multiplication off by a factor 0.004739
Can anyone explain to me why the speed calculation is off?
It is a floating point calculation. I show (below) in the log print all the factors involved.
According to my hand calculator:
length: ...
1
vote
6answers
87 views
Float output is incorrect
I have created a program that takes an input for a user then lets them enter the amount they want to give that input, however when I print the total and amounts. However this is returing the same ...
0
votes
1answer
41 views
Issue with fmodf for getting the Modulo
I need to find the modulo for float numbers.
For that, I am using
NSLog(@"value >> %f",fmodf(2.0f, 0.1f));
The output for this should be 0.0f
But I am getting the output value >> 0.1
How?
5
votes
2answers
183 views
When is it more efficient to use CORDIC or a polynomial approximation?
I am working on an architecture which does not feature floating point hardware, but only a 16 bit ALU and a 40 bit MAC.
I have already implemented 32-bit single precision floating point ...
1
vote
3answers
152 views
Fast calculation of RMS gives NaNs in Java - floating point error?
I'm getting a perplexing result doing math with floats. I have code that should never produce a negative number producing a negative number, which causes NaNs when I try to take the square root.
...
1
vote
1answer
89 views
Why does my calculator return true for 2^34 == 2^34 - 1? [closed]
I'm asking this question here because I believe this is more of a programmatic issue than anything else.
I'm using a TI-84 Plus Sliver Edition calculator that contains logical operators that can test ...
0
votes
2answers
874 views
Convert floating point number from binary to a decimal number
I have to convert floating point number from binary to usable decimal number.
Of course my floating point number has been separated into bytes, so 4 bytes total.
1 2 3 4
...
1
vote
2answers
110 views
efficiency of pow(num,2)?
I need to calculate squares of floats many times.(to the order of 10^8)
Which is better (as time is a huge constraint) :
pdt=pow(num,2);
OR
pdt=num*num
Or are they really same?
Edit: ...
0
votes
1answer
80 views
Mysql ABS(AVG(field_name)) as total returns float number
I'm trying to get integer value with ABS and AVG functions in MySQL but it's still giving me float value.
select ABS(AVG(quantity)) as average from stocks
This query should return absolute integer ...
0
votes
1answer
49 views
Adding floating point numbers, why is this the result?
Suppose we wanted to add the IEEE 754 floating point numbers:
1.00101 • 22 and -1.00111 • 23
We first adjust the first number to match exponents: 1.00101 • 22 = 0.100101 • 23
The we add together to ...
1
vote
2answers
81 views
Floating point arithmetic rounding to nearest
I am a little confused about rounding to nearest in floating point arithmetic. Let a, b, and c be normalized double precision floating point numbers. Is it true that a+b=b+a where + is correctly ...
2
votes
1answer
95 views
How do I calculate the value of information gain in order to reduce the floating-point approximation errors?
I have a dataset containing some features that belong to two class labels denoted by 1 and 2. This dataset is procedded in order to build a decision tree: during the construction of the tree, I need ...
1
vote
1answer
35 views
How do you perform floating point arithmetic on two floating point numbers?
Suppose I wanted to add, subtract, and/or multiple the following two floating point numbers that follow the format:
1 bit sign
3 bit exponent (bias 3)
6 bit mantissa
Can someone ...
1
vote
3answers
175 views
Problems with removing last digit of floating point number
I am making a console based calculator application. The application processes user keypresses to perform its operations. Integral inputs work fine; however, I am facing problems writing the code for ...
5
votes
2answers
118 views
Comparing mathematical expressions
So here's my situation: I have two mathematical expressions which contains variables (x, y, z, etc). I have already compiled them to postfix using the shunting yard algorithm for execution and now I ...
2
votes
5answers
409 views
C# Math.Pow() is broken
And no, this does not (to my understanding) involve integer division or floating-point rounding issues.
My exact code is:
static void Main(string[] args)
{
double power = (double)1.0 ...
0
votes
3answers
351 views
Converting float decimal to fraction
I am trying to convert calculations keyed in by users with decimal results into fractions. For e.g.; 66.6666666667 into 66 2/3. Any pointers?
Thanx in advance
0
votes
2answers
259 views
UNIX ShellScript, arithmetic with floating point
UNIX ShellScript, arithmetic with floating point:
I would like to be able to do arithmetic with floating point numbers such as 1.503923. But the floating point numbers are pulled from a file as a ...
1
vote
2answers
152 views
Getting wrong answer in double arithmetic in Java [duplicate]
Possible Duplicate:
Double calculation producing odd result
I'm writing a program in Java that deals with a lot of double arithmetic. I eventually get to the point where I need to add ...
3
votes
2answers
156 views
Is integer multiplication implemented using double precision floating point exact up until 2^53?
I ask because I am computing matrix multiplications where all the matrix values are integers.
I'd like to use LAPACK so that I get fast code that is correct. Will two large integers (whose product ...
3
votes
1answer
129 views
Formulas for the constants in fdlibm/e_pow.c
I'm trying to understand the implementation of power function in fdlibm/e_pow.c. Does anyone know how the constants were computed? In particular, I need the formulas for dp_h[], dp_l[], L1, L2, L3, ...
7
votes
1answer
137 views
What algorithms do FPUs use to compute transcendental functions?
What methods would a modern FPU use to compute transcendental functions?
For example, Intel CPUs provide instructions such as FSIN, FCOS, FYL2X, etc. I am curious as to what algorithms would be used ...
3
votes
2answers
174 views
Performance of different math functions in x86?
I am writing a 3D collision, and want to know the difference in performance of basic math functions like + - * / sqrt pwr trigonometry like sin cos tan arcsin..
I heard it depends on many other ...
5
votes
3answers
217 views
Negative zero literal in golang
IEEE754 supports the negative zero.
But this code
a := -0.0
fmt.Println(a, 1/a)
outputs
0 +Inf
where I would have expected
-0 -Inf
Other languages whose float format is based on IEEE754 let ...
4
votes
4answers
90 views
What would be an efficient way to select float in a finite sized array that is more close to zero?
For each function, I get/have a finite sized array of floats that I need to pick.
So if I have something like
1)
{-0.02, 0.5, 0.98, -0.15, etc... }
I would pick "-0.02" from this list.
2)
...
6
votes
4answers
317 views
tan 45 gives me 0.9999
Why does tan 45(0.7853981633974483 in radian) give me 0.9999? What's wrong with the following code?
System.out.println(Math.tan(Math.toRadians(45.0)) );
I don't think there's any typo in here.
So ...
0
votes
1answer
52 views
BEDMAS precedence in (Obj-)C?
I've just solved a rather weird problem I've been having in an iOS Application. I need to apply a scaling factor (which I have calculated to be 64/38 ~= 1.684), to a value passed into a method.
The ...
1
vote
2answers
83 views
(Racket/Scheme) Subtraction yields result off by incredibly small margin
I'm currently messing around with "How To Design Programs" - using Scheme/Racket; I've come across a really peculiar feature in the R5RS version of Scheme.
When conducting a simple subtraction, ...
2
votes
2answers
177 views
Floating point precision in Python
I have written this function in python:
import math
def radical(a, b, k):
return (1-((a**2-b**2)/a**2)*(math.sin(math.pi*(2*k-1)/180))**2)**.5
def f(a, b):
sigma = 0
for k in ...
1
vote
2answers
135 views
Modulus to limit latitude and longitude values
I have doubles that represent latitudes and longitudes.
I can easily limit longitudes to (-180.0, 180.0] with the following function.
double limitLon(double lon)
{
return fmod(lon - 180.0, 360.0) + ...
1
vote
1answer
106 views
Clojure multiplication gives strange results
For some reason, I'm getting strange results from a multiplication function. This is the program:
(ns scalc.core)
(defn add [numbers]
(reduce + numbers))
(defn sub [numbers]
(reduce - numbers))
...
5
votes
4answers
380 views
Will the two lines intersect in a Cartesian plane
I have this problem from the book 'Crack the Coding Interview'.
Given two lines on a Cartesian plane, determine whether the two lines would intersect.`
Here is the solution:
public class Line {
...
0
votes
1answer
110 views
Why does 143.55 equal 143.54999999999 in javascript? [duplicate]
Possible Duplicate:
Is JavaScript’s Math broken?
I'm running a few very basic functions in javascript to try and convert a float to a currency. For example:
var vhsTiers = Array(15.90, ...
2
votes
3answers
179 views
Consistent floating point arithmetic in fortran with different compilers on different computers?
How can I get the same results with floating-point arithmetic using different compilers and possibly also different computers?
This is p.f90
program fl
implicit none
real(kind=8) :: a
a=9d0/10d0
...
-2
votes
1answer
199 views
C++ Precision digits for float vs double
So I understand the difference for floats vs doubles in C++.
A double is simply a double float point whereas a float a single
floating point (double the size of precision).
My question is, how ...
0
votes
2answers
668 views
Float sum with javascript [duplicate]
Possible Duplicate:
Is JavaScript's Math broken?
I'm calculating the sum of several float values using javascript and... I've noticed a strange thing never seen before. Executing this ...
3
votes
3answers
348 views
conversion from double to unsigned int
I am facing a problem with the conversion of value from Double to int. I try to run the following code :
int main()
{
double val_d= 6.25e-05;
cout << (1/val_d) << endl;
...
2
votes
1answer
67 views
Not operator in Matlab behaving strangely
In my code I need to check if pairs of the differences between two consecutive members of a vector are equal/not equal and then do some stuff accordingly.
Now here is a strange thing happening in ...
-3
votes
2answers
1k views
1e-9 or -1e9, which one is correct? [closed]
I am assigned some old code and when I was reading through it, I noticed it had these in the form of:
float low = 1e-9;
float high = 1e9;
float lowB = 1e-9;
float highB = 1e9;
float lowL = 1e-9;
...
1
vote
2answers
516 views
C# float and decimal input and math
I'm fairly new to programming and I am taking a class. The first assignment involves the user inputting their age and then returning that age and then half of the age number in a decimal value, as ...
3
votes
4answers
312 views
What types of numbers are representable in binary floating-point?
I've read a lot about floats, but it's all unnecessarily involved. I think I've got it pretty much understood, but there's just one thing I'd like to know for sure:
I know that, fractions of the form ...



