6
votes
8answers
508 views
Which floor is redundant in floor(sqrt(floor(x)))?
I have floor(sqrt(floor(x))). Which is true:
The inner floor is redundant.
The outer floor is redundant.
6
votes
2answers
322 views
Does floor() return something that’s exactly representable?
In C89, floor() returns a double. Is the following guaranteed to work?
double d = floor(3.0 + 0.5);
int x = (int) d;
assert(x == 3);
My concern is that the result of floor migh …
3
votes
5answers
396 views
Why does Math.Floor(Double) return a value of type Double?
Hi All, I need to get the left hand side integer value from a decimal or double. For Ex: I need to get the value 4 from 4.6. I tried using Math.Floor function but it's returning a …
1
vote
1answer
158 views
How do I create a new Joda DateTime truncated to the last hour?
I am pulling timestamps from a file that I want to create a new DateTime for, but I want to create the DateTime at the floor of the hour (or any Joda Period will do).
How Can I do …
1
vote
4answers
361 views
Fractional Part of the number question.
What is a good algorithm to determine the necessary fraction needed to add/sub to the number in order to round it to the nearest integer without using the inbuilt ceiling or floor …
1
vote
5answers
574 views
Does casting to an int after std::floor guarantee the right result?
I'd like a floor function with the syntax
int floor(double x);
but std::floor returns a double. Is
static_cast <int> (std::floor(x));
guaranteed to give me the correct …
0
votes
2answers
48 views
How to ceil, floor and round bcmath numbers?
I need to mimic the exact functionality of the ceil(), floor() and round() functions on bcmath numbers, I've already found a very similar question but unfortunately the answer prov …
