The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
30 views

glob2rx in R to get all cells whose last decimal is 5?

I have a matrix that looks lke this: wun2 308.0 111.0 72.0 64.0 wupA 8177.0 3933.0 2235.0 2057.0 wus ...
0
votes
2answers
41 views

ceiling decimal format in javascript

I want to get specified format number.. help me plz.. I made function function ceilingAbsolute(inVal, pos){ var digits = Math.pow(10, pos); var num = 0; var patten = ...
2
votes
3answers
110 views

Strange ceiling error in c++

Hello I have some difficulties with the ceil function in c++ : I've got a regular grid of points, and I need to perform an interpolation over it to compute the z-values of a set of points. In order ...
1
vote
6answers
60 views

Need the nearest integer value in javascript

In my javascript pagination file I was calculating number of pages by Math.ceil() var total_pages = Math.ceil(total_items/items_per_page); But here I am getting 3 for 2.25, 1 for 0.588, 2 ...
0
votes
1answer
16 views

loading a tree set

Hi I am doing a project where I load values into a tree set. The keys are times. The times are increasing(obviously:). After everything is loaded to the tree set I will go back and take out sample ...
1
vote
1answer
118 views

Excel: Alternative to CEILING for rounding to nearest value

Normally I ask about work stuff so here's something different. To approach my new year's resolution in the nerdiest way possible, I'm creating a gym program in an excel file. I'll be doing ramped ...
4
votes
5answers
492 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) ...
5
votes
5answers
275 views

Understanding CEILING macro use cases

I've found the following macro in a utility header in our codebase: #define CEILING(x,y) (((x) + (y) - 1) / (y)) Which (with help from this answer) I've parsed as: // Return the smallest multiple ...
2
votes
1answer
180 views

ceiling and floor in TreeMap java

I found myself using a TreeMap simply because I needed the capability of looking something up with the floorEntry() (and ceilingEntry()) methods. This obviously make the code a bit clumsy. So does ...
1
vote
4answers
718 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 ...
6
votes
2answers
775 views

Excel-like ceiling function in python?

I know about math.ceil and numpy.ceil, but both of them lack of significance parameter. For example in Excel: =Ceiling(210.63, 0.05) -> 210.65 numpy.ceil and math.ceil in other hand: ...
0
votes
1answer
260 views

How can I use Math Ceiling RoundUp How to determine even odd number

I need to print data from a DataGridView on both sides of a preprinted form but: Each side has different arrangement for that info. Each side can only hold info from tree rows, so: 1st, 2nd and 3rd ...
16
votes
5answers
2k views

Why Math.Ceiling returns double?

In C# the method Math.Ceiling returns a double value. Why does it not return int?
6
votes
2answers
9k views

javascript - ceiling of a dollar amount

So I am adding and subtracting floats in javascript, and I need to know how to always take the ceiling of any number that has more than 3 decimal places. For example: 3.19 = 3.19 3.191 = 3.20 ...
1
vote
3answers
404 views

.NET: Can you simplify this Math.Ceiling expression

Can you simplify this Math.Ceiling expression decimal total decimal? quantity, multiplier int? days total = (decimal)Math.Ceiling((double)quantity.Value * (double)days.Value * (double)multiplier); ...
2
votes
5answers
2k 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);
0
votes
1answer
108 views

How to group by a price confined to a dynamically generated ceiling?

I have a table of items with several properties but to keep it short, it has property price. I want to group a List<Item> into groups of price ranges. The catch is that the price ranges ...
0
votes
1answer
146 views

mysql double values checking problem

I wanna make a query that fetches only the rows that has 'cost' value grader than zero.The cost column has double data type.When i write a query like that, select cost from xxx where cost>0; it ...
10
votes
7answers
1k views

C# Math.Ceiling bug or not?

I do not know why Ceiling behave like in the below image Why is processingFee != Settings.PaymentProcessingFeeInPercentage * prizesSum ? View image at full size
2
votes
3answers
457 views

What’s the Linq to SQL equivalent to CEILING?

How do I do this SELECT CEILING(COUNT(*) / 10) NumberOfPages FROM MyTable in Linq to SQL?
7
votes
5answers
6k views

Get ceiling integer from number in linux (BASH)

How would I do something like: ceiling(N/500) N representing a number. But in a linux bash script
2
votes
3answers
2k 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: ...
0
votes
5answers
3k views

Code in PHP for the ceiling function

Anyone has ever programmed a PHP (or perl) function to get the ceiling value Excel style?