Tagged Questions
The floor tag has no wiki summary.
13
votes
5answers
2k views
Why does Math.Floor(Double) return a value of type Double?
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 double value, for ex: It's ...
9
votes
3answers
127 views
How does x|0 floor the number in JavaScript?
In the accepted answer on my earlier question
( What is the fastest way to generate a random integer in javascript? ), I was wondering how this:
var x = 5.12042;
x = x|0;
floors the number to 5?
...
9
votes
8answers
1k 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.
8
votes
7answers
4k views
Round minute down to nearest quarter hour
I need to round times down to the nearest quarter hour in PHP. The times are being pulled from a MySQL database from a datetime column and formatted like 2010-03-18 10:50:00.
Example:
10:50 needs to ...
7
votes
3answers
622 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 might not be exactly ...
5
votes
5answers
2k 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 integer, or could I ...
4
votes
3answers
104 views
different values of std::floor function for arguments with same value but different types
Consider the following:
#include <iostream>
#include <cmath>
int main()
{
using std::cout;
using std::endl;
const long double be2 = std::log(2);
cout << std::log(8.0) / be2 ...
4
votes
7answers
637 views
Avoiding Calls to floor()
I am working on a piece of code where I need to deal with uvs (2D texture coordinates) that are not necessarily in the 0 to 1 range. As an example, sometimes I will get a uv with a u component that is ...
4
votes
1answer
1k 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 this?
3
votes
1answer
33 views
Difference of @value and FLOOR(@value) is 0 for DECIMAL type
A lot of answers here say use
SELECT @value - FLOOR(@value)
to get the decimal part of a number. See here or here for examples.
I'm getting what I consider to be weird behavior when I do this.
...
3
votes
2answers
416 views
Create a simple drawing tool in HTML5?
I'm working on this project where I'd like to give my user the possibility to draw a simple floor plan by rooms, and then stock it with maybe some metadata (like room names).
I see it like that:
- ...
3
votes
3answers
567 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 provided isn't good ...
2
votes
3answers
86 views
Is there a way to floor/ceil based on whether the value is over 0.5 or under?
I am trying to round my values so that if it's 0.5 or greater, it becomes 1, else it becomes 0. For example:
3.7 -> 4;
1.3 -> 1;
2.5 -> 3;
...
Any ideas?
2
votes
1answer
129 views
Ambiguous type in a simple statement Haskell
I want simply add 3.5 + floor 3.5 but this error occur:
Ambiguous type variable 't' in constraints:
'Fractional t'
arising from the literal '3.5'...
'Integral t'
...
2
votes
1answer
591 views
Integer division compared to floored quotient: why this surprising result?
The // "integer division" operator of Python surprised me, today:
>>> math.floor(11/1.1)
10.0
>>> 11//1.1
9.0
The documentation reads "(floored) quotient of x and y". So, why is ...
2
votes
3answers
1k 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 funcitons?
Edit: ...
1
vote
1answer
23 views
how to round the decimals to the upper value
i am using sql server 2008 procedure, i have total rows divide by per page, i want that if the results contains any decimal value it should be rounded to its upper value.
i used below:
SELECT ...
1
vote
2answers
69 views
How to convert float to whole number?
I have a number stored in mysql as type float. From what I've read, I should be able to convert a float down by using floor(), but trying this or anything else isn't working. Hoping someone can spot ...
1
vote
2answers
522 views
efficient way to divide ignoring rest
there are 2 ways i found to get a whole number from a division in c++
question is which way is more efficient (more speedy)
first way:
Quotient = value1 / value2; // normal division haveing ...
1
vote
1answer
4k views
Math.round() and Math.floor() problem with setInterval()
I'm having problem with Math.round() and Math.floor() in setInterval() function by using jQuery.
This is my code:
var number1 = 400;
var up_up = setInterval(
function (){
number1 = ...
1
vote
3answers
232 views
Optimization of Point to Voxel mapping
I used a profiler to look over some code which does not yet run fast enough. It found that the following function took most of the time, and half of the time in this function was spent in floor. Now, ...
1
vote
5answers
565 views
How do I randomly generate a number between 75 - 100%?
I know how to do it between 0 and 100, but I can I set the floor?
This is how I do 0 - 100..
int randomNum = (int) Math.ceil(Math.random() * 100);
1
vote
4answers
584 views
Rounding a MYSQL datetime to earliest 15 minute interval in milliseconds (PHP)
I'm fetching a datetime from MYSQL which looks like:
2010-08-11 11:18:28
I need to convert it into the "floor" or the earliest 15 minute interval and output in milliseconds for another function.
...
0
votes
2answers
21 views
Always display time as XX:XX using PHP
All,
I have the following code to figure out a time based on milliseconds that were provided:
$ms = $value['trackTimeMillis'];
$track_time = floor($ms/60000).':'.floor(($ms%60000)/1000);
The issue ...
0
votes
2answers
36 views
how to group number of results in a drop down list in php?
As an example I have 19 rows in the database, how do i make it so my drop down list print 10, 20, etc as opposed to 1, 2, 3, 4, 5 etc. My code below currently print 1 to 20 rather than 10, 20.
...
0
votes
5answers
92 views
Why would i combine Math.floor With Math.random?
just like this:
Math.floor(Math.Random * num);
Can someone explain please?
0
votes
1answer
58 views
Can I make a floor shadow for a block div without using a graphic?
I want to have a gallery where each element (text, image, video) will always be a solid block, but each one will be a different size. I want each object to have a floor shadow, similar to this:
...
0
votes
1answer
118 views
Getting the floor value of a number in SQLite?
I have a SQLite database with a table containing the scores of some league players in a bowling center. I'm trying to get the average of the Score column for each player ID. The problem with this is I ...
0
votes
1answer
153 views
Check if comboBox SelectedIndex is divisible by 4 in c++
Very new to Visual c++ 2010 Express and as a test program I'm writing a program that can select any date between January 1, 0, and December 31, 2011. Now, I pretty much got the experience I wanted for ...
0
votes
0answers
55 views
spider in floor hibernate [closed]
I want to hibernate on FLOOR. But before doing that I would like to check the risks of getting the hibernate basis spidered. Has anyone experienced bug or spider problems when hibernating on FLOOR. ...
0
votes
1answer
262 views
How to use excel functions: If, Mod, and Floor
Hi I am trying to round numbers where I must use the given functions, if, mod, and floor.
Given a price such as $5.50 or $12.19 or any price, if it ends in .00 to 0.49, it should round to .49 and if ...
0
votes
0answers
59 views
floor shop scheduling [closed]
what happens in floor shop scheduling? I cant find a proper discription any where.
0
votes
1answer
243 views
ceil/floor in sse simd
Can anyone suggest a fast way to compute float floor/ceil using pre-SSE4.1 SIMD? I need to correctly handle all the corner cases, e.g. when I have a float value, that is not representable by 32-bit ...
0
votes
3answers
540 views
calculations in objective-c not returning the correct value
Please check out this piece of code, more specifically the hourStep calculations.
int h = [[timeArray objectAtIndex:0] intValue];
int m = [[timeArray objectAtIndex:1] intValue];
int s = [[timeArray ...
0
votes
2answers
292 views
decimal values in pl/sql
How to display a value as follows in oracle:
99.99 as 99.9900,
99.9 as 99.9000,
9.99 as 9.9900,
99 as 99.0000
All cases should be satisfied..
Please help...
0
votes
4answers
156 views
C - floor of double moduls integer
I need to do the following equation floor(e%100000) where e is a double. I know mod only accepts int values, how do I go about achieving this same result?
Thanks
0
votes
1answer
141 views
Floor function returning EXC_BAD_ACCESS
The cod that I am using contains these snippets of code. I am calling ThetaG_JD with the argument 2455343.50000 which is just a sample Julian date. Every time I run the program, I receive a ...
0
votes
3answers
243 views
floor of double(time_t)
I cannot understand why this throws undefined reference to `floor'":
double curr_time = (double)time(NULL);
return floor(curr_time);
Hasn't it been casted to double, which is what floor receives?
-1
votes
2answers
37 views
Error in calculating Floor() from SQL
I need to calculate numbers of money notes needed for salary preparation.
I have problem with the last column, i.e. USD1.
I will to get the value for USD1 = 2.
DECLARE @GrossPay Decimal(12,2)
...