Returns the next lowest integer value by rounding down value if necessary.

learn more… | top users | synonyms

0
votes
1answer
24 views

How to floor a number in sql based on a range

I would like to know if there is a function or some sort of way to round a number to lowest whole value. Something like floor, but to a specified increment like 10. So for example: 0.766,5.0883, 9, ...
4
votes
2answers
59 views

floor(24.24*1e4) returns wrong value

Performing some coordinates rounding, I came to some bug or something, with different numbers it works as I needed $res = floor(24.24*1e4)/1e4; echo $res; returns 24.2399 Do You know what is so ...
1
vote
4answers
77 views

Does “math.floor(x)” and “int(x)” produce different results for positive real numbers in Python?

I have checked a few examples on the Python shell and they seem to spit out same numbers. But in a program where large set of numbers are supposed to be approximated, they apparently produce different ...
0
votes
2answers
62 views

How do I generate random numbers within a range (noob)

computerTotal = (int) Math.ceil(Math.random() * 21); Can someone show me how to get 16 - 21 random number I keep getting errors when i try to implement the Math.floor function... As you can see i'm ...
0
votes
4answers
71 views

Math.floor kind of thing

i found it difficult to search for my question (don't know what keywords to use sorry mods!). What I want to achieve is something like a Math.floor function but a bit different. i dont want to floor ...
3
votes
4answers
84 views

floor() behaving strangely

I needed a function to round up a positive double to its closest integer. lurking aorund i found this very elegant way int x = floor(y + 0.5); I wrote a simple testing program: double a = 10.0; ...
3
votes
3answers
97 views

why am I getting multiple rows in MYSQL query?

I am trying to retrive a random row from a table (user), by using the Primary Key _id and the following query. SELECT * FROM user WHERE _id IN (SELECT Floor(1 + ( Rand() * ( Count(_id) - 1 ) )) ...
-2
votes
3answers
112 views

c# equivalent of the c++ “floor” function

I'm looking for an implementation of floor(x) in C# so that it would match the C++ version. floor of 2.3 is 2.0 floor of 3.8 is 3.0 floor of -2.3 is -3.0 floor of -3.8 is -4.0 Since a C++ reviewer ...
1
vote
2answers
194 views

Rounding to nearest fraction (half, quarter, etc.)

So, I need to create the following functions but my head can't think of any possibility in PHP without complicated math. Round always up to the nearest decimal (1.81 = 1.90, 1.89 = 1.90, 1.85 = ...
0
votes
0answers
141 views

VB.net windows application floor plan using GDI+

Our company want to implement a interactive floor plan into a .net window application for better experience and usability. It is used for shops navigation, information enquiry and update. The ...
0
votes
1answer
81 views

Floor, int conversion is not working correctly for large values

I have got a problem. I got this function in a class "invKin" to set some parameters before I ran a simulation: void IK_mm4::set_timesetting(double *T_horiz_, double *delta_t_) { T_horiz = ...
0
votes
0answers
42 views

rounding a number (floor) in r [duplicate]

Possible Duplicate: Why are these numbers not equal? I was trying to round a number. The following are fine: floor(3) [1] 3 however: floor (0.6 / 0.2) [1] 2 or x <- 0.6 / 0.2 ...
-1
votes
1answer
87 views

Difference between ~~ and Math.floor()

As I see in examples, the functionality if ~~ and Math.floor is the same. Both of them round a number downward (Am I think correct?) Also I should mention that according to this test ~~ is faster ...
0
votes
1answer
33 views

Adding decimal to a number multiplies it by ten in Javascript

I'm having a problem with adding numbers in javascript. I have a variable that keeps track of full number (currentfloatx) and a variable that keeps track of the floored version of that number ...
0
votes
2answers
479 views

C++ time.h difftime

I am in trouble with interpreting difftime quantity in a log I have produced: I measure duration for some method call, and I log it, with this syntax: time_t end, start ; time(&start); ...
1
vote
3answers
99 views

Meaning of floor in equations

By reading the title it may sound like a silly question, but I have a data structures exam tomorrow and some formulas I need to know for algorithm analysis are read as (n – floor(log (n + 1)). What ...
4
votes
1answer
254 views

Representable result of floor() and ceil()

For an arbitrary value 'v' of a floating point type (float/double/long double), does C89 guarantee that the mathematically exact integer result of floor(v) and ceil(v) is a representable value of the ...
3
votes
3answers
367 views

C integer division and floor

In C, is there a difference between integer division a/b and floor(a/b) where both a and b are integers? More specifically what happens during both processes?
14
votes
5answers
756 views

Does this mean that Java Math.floor is extremely slow?

I don't Java much. I am writing some optimized math code and I was shocked by my profile results. My code collects values, interleaves the data and then chooses the values based on that. Java runs ...
-1
votes
2answers
85 views

php floor a number as times of 18

How to make a function so that make floor all the number as times of 18? example: 3 => 0 17 => 0 19 => 18 43 => 36 69 => 54 Thanks.
4
votes
5answers
499 views

Fast Floor and Ceiling alternatives for positive System.Double values

double d = 0; // random decimal value with it's integral part within the range of Int32 and always positive. int floored = (int) Math.Floor(d); // Less than or equal to. int ceiled = (int) ...
1
vote
1answer
114 views

SQL CONVERT and FLOOR query

What is the difference between these two queries? Why do they give different results? Query 1 DECLARE @test nvarchar SET @test = CONVERT(nvarchar, FLOOR(10.5)) SELECT @test Results: ['1'] Query ...
0
votes
0answers
139 views

Using google maps floor plan, is it possible to save floor plans to a local database rather then upload to google?

I am doing work for a company who requires a floor plan of multiple facilities, along with clickable and move-able markers. I have seen google maps floor plan tool, and never thought I would have a ...
1
vote
2answers
68 views

SQL Count and Floor

So I am trying to create a query that returns account numbers that are associated with more than one account. When I run the code SELECT accountNumber FROM tbl1 WHERE LabelId = 328 I get the ...
1
vote
2answers
324 views

composing floor and sqrt in haskell

I'm just learning haskell (on my own, for fun) and I've come up against a wall. My Question: How can I define a function flrt = (floor . sqrt) When I try it in a file and compile, GCHi complains ...
0
votes
3answers
173 views

Floor function not working

Given the following cod: $number = 1050.55; var_dump($number - floor($number)); Why does the above code returns the following result? float(0.54999999999995) I want a fixed value like 0.55 in ...
3
votes
2answers
1k views

No Truncate function in PHP - Options?

I have an algorithm that performs the following calculations: ( ( 0.50 * 0 ) + 7 ) / 10 = 0.70 ( ( 0.70 * 10 ) + 9 ) / 20 = 0.80 ( ( 0.80 * 20 ) + 7 ) / 30 = 0.7666666667 -> I want this value to ...
0
votes
1answer
223 views

function dispose mootools.floor not work

I want to use this validate form http://mootools.floor.ch/en/download/ but don't work. <form name="niceform" id="third" action="" class="niceform" method="post" ...
0
votes
1answer
347 views

Get Date difference between a date and datetime fields using “Floor”

I am trying to get number of day differences using Floor function between a date and a datetime field. But i am getting one extra day. This is how I`m doing-> SELECT col,col1,FLOOR(col-col1) FROM ...
1
vote
1answer
649 views

Round to the nearest dollar

I am looking for a way to round to the nearest dollar with the following stipulations: (If wholenumber.50 and above round up to the next whole number) (If wholenumber.49 and below round down to the ...
0
votes
2answers
664 views

Java: BigInteger floor and ceil functions [closed]

I'm trying to implement an RSA attack in Java and I need to compute math operations like floor and ceil to BigInteger variables. As we know math.ceil and math.floor only apply to double variables, do ...
1
vote
4answers
723 views

What's the difference between the pair of functions floor()/ceil() and min()/max()?

I would say all programming languages have functions with these names to choose the lesser or greater of two values: min() & max() floor() & ceil() / ceiling() And some languages have ...
2
votes
3answers
283 views

Remove records starting a character (Vxxx) to enable floor() command in R

I'm working with emergency room ICD-9 code data (health diagnoses), which are three-digit codes with up to 2 decimals after (examples: 499, 499.1, 499.51, etc). Some special codes have the letter "V" ...
1
vote
1answer
63 views

Why don't I get the correct time?

If 21600 is 6 hours in seconds why does my counter say 7 hours and 15 minutes? Am I missing something here? Here is a demo: http://jsfiddle.net/kLk4f/ JS var time_in_seconds = 26100; // 6 hours ...
0
votes
4answers
285 views

How to sum sequence of floors numbers?

How can I sum the following sequence: ⌊n∕2⌋ + ⌊n+1∕2⌋ + ⌊n+2∕2⌋ + ...... + (n-1) What I think is discard the floor and sum what inside each floor !! This is just a guess. Give me any hint or ...
0
votes
1answer
76 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 ...
9
votes
3answers
223 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 a number loses its decimals via the symbol | . For example: ...
3
votes
1answer
109 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. ...
1
vote
1answer
2k 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 ...
0
votes
2answers
58 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. ...
2
votes
5answers
3k views

Why would i combine Math.floor With Math.random?

just like this: Math.floor(Math.Random * num); Can someone explain please?
2
votes
3answers
170 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?
0
votes
1answer
193 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: ...
-1
votes
2answers
88 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) ...
1
vote
2answers
504 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 ...
2
votes
1answer
180 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
2k 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 ...
5
votes
3answers
210 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 ...
1
vote
2answers
1k 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 ...
3
votes
2answers
892 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: - ...

1 2