The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
15 views

numbers/decimals not sorting in radgrid

Hi I am not able to sort a column that contains decimals in a radgrid. When I sort, it only sorts by first number, like if sorting a string. Ex: 1000, 12, 1300, 2189, 20 Instead of sorting like ...
0
votes
3answers
32 views

if number is a decimal between 2 numbers (php)

I'm writings a PHP script that calculates an average of a number. EXAMPLE: $rating = 7; $votes = 3; $AvgRating = number_format($rating / $votes,1); The return $AvgRating for this would be 2.3 ...
3
votes
1answer
29 views

cv::Mat matrix, HOW TO Reduce digits to the right of the decimal point in cv::Mat?

I have an app that prints a 3x3 cv::Mat on the iPhone screen. I need to reduce the decimals, as the screen is not so big, see: [1.004596557012473, -0.003116992336797859, 5.936915104939593; ...
0
votes
3answers
28 views

Using numbers with multiple decimal points (ex. 1.4.4) in MySql, is it possible?

I'm creating a system for keeping track of which type of software, and which version of the software is licensed for each company. Some of the software has version numbers like 1.1.4 or similar with ...
0
votes
3answers
48 views

Sorting decimals

here is another question for sorting a list with decimals: $ list="1 2 5 2.1" $ for j in "${list[@]}"; do echo "$j"; done | sort -n 1 2 5 2.1 I expected 1 2 2.1 5
1
vote
2answers
28 views

Decimals of a string calculation

I have this javascript code for a quiz programme but i can't figure out how to return the calculation result of the last context line with only 1 decimal. Any suggestions ? EndQuiz=function(){ ...
0
votes
0answers
27 views

Adding variables with decimals

I have the following code that I'm using to add different variables to a "base price". The variables are coming from a separate dropdown menus and my issue is that in the dropdown some of the prices ...
1
vote
3answers
82 views

Counting the number of decimal places in pascal

I just started studying pascal and I have to do a pascal program as homework. I made it but i don't know how to count the number of decimal places in a real number (the number of digit after the "."). ...
0
votes
1answer
14 views

Given, “printf(”%0.Xlf“, somedouble);” where X is the amount of decimal places I want, how do I make X a variable?

I want to write printf("%0.2lf and %0.2lf", solution1, solution2); were instead of 2 decimal places, I can use a variable, numberOfDecimalPlaces. How can I do that? Thanks in advance!
0
votes
1answer
55 views

How can I get MOD in Javascript to return a decimal correctly?

A simple problem I'm working with is taking a time for a 300m run in seconds and converting them to a string so that it reads "9:99.99". To get seconds, I do the following MOD operation: sec = ...
1
vote
1answer
72 views

How to keep variable amount of numbers after decimals

I am using Excel 2007. I have multiple data sets with random number of characters in each row. For example: A1 1.60 A2 0.008 A3 0.900 A4 1.0 A5 0.56 A6 1.703 I need to make it into a ...
0
votes
2answers
86 views

Round up to two decimals in eclipse android

Someone who can help me making this round up to two decimals instead of showing all of the decimals in android? http://i.stack.imgur.com/NoSmj.png
1
vote
2answers
63 views

too many decimals + styling not visible on website

My script below displays too many decimal points in the return value also, when i posted the code onto my website, it did not display all the text styling that i added can you please tell me what im ...
2
votes
1answer
34 views

Always Show 4 Decimal Places

Is it possible to force a cell to always show 4 decimal places using xlwt? Regardless of the number actually present after the decimal place. I have done some searching and I can find a string to ...
-1
votes
2answers
79 views

regex for floating positive and negative and 6 decimals

I am a newbie with regex, I need a regex for number between -180 and 180 integer or float with a maximum of 6 decimals
0
votes
4answers
61 views

to_d to always return 2 decimals places in ruby

I'm dealing with currencies and I want to round down the number to 2 decimal places. Even if the number is 500.0, I would like it to be 500.00 to be consistent. When I do "500.00".to_d it converts it ...
0
votes
2answers
47 views

regex for float with 6 decimals and 3 numbers

Good morning everyone, i need a regex for a float number positive or negative with a maximum of 3 numbers before the decimal separator and 6 (only 6) numbers after. Can anyone please help me? Thank ...
1
vote
2answers
51 views

javascript too many decimals doing substractions [duplicate]

I'm doing a simple substraction with Javascript and the result doesn't match with the real result: <html> <head> <title></title> </head> <body> <table> ...
-1
votes
2answers
74 views

Why in this Java program the Doubles in a String Output have too many decimals?

In a solution to an exercise in the Book Art and Science of Java I had to write a program that converts Kilograms into the corresponding values in Pounds and Ounces. I wrote the program but when I try ...
-1
votes
1answer
61 views

Jquery/Javascript/PHP: Display every number with two decimals

I have a (hopefully) quick and short question. I try to find a Javascript, Jquery, or PHP function that allows me to display every number on a webpage with two decimals. Basically, 0 should be 0.00, ...
0
votes
1answer
47 views

Precise Mouse coordinates in processing

I am tracking mouse coordinates in processing over a jpg image and I was wondering if there is any way to increase the number of decimal points that the x and y coordinates are returning. The image is ...
0
votes
4answers
134 views

How to avoid rounding off in NSNumberFormatter

I am trying to have a number string with maximum 2 decimals precision, while rest decimals just trimmed off instead of rounding them up. For example: I have: 123456.9964 I want: 123456.99 -> Just ...
0
votes
1answer
190 views

Java - Calculator with Decimals [duplicate]

I'm making a calculator using Java. It's all working and I'm now trying to implement decimals. I'm using doubles to store the numbers. I have a solution the following solution: decPoints++; ...
4
votes
1answer
136 views

Format Python Decimal object to a specified precision

I've spent countless hours researching, reading, testing, and ultimately confused and dismayed at Python's Decimal object's lack of the most fundamental concept: Formatting a Decimal's output to a ...
0
votes
1answer
329 views

Rounding to the nearest hundredth of a decimal in JavaScript

I'm doing simple math in JavaScript using variables to represent the numbers. Here is an example of my code: var ones = 0; var fives = 0; function results (){ _fives = (fives * 5); var res = ...
0
votes
0answers
97 views

Calculating bet payouts based on decimals or percentages in a JavaScript game?

I'm no maths whiz, so would love some input on this. I'm creating a conkers game in JS, where the player can choose which conker to bet on out of 8 possible options, and payouts are calculated based ...
1
vote
5answers
363 views

How to multiply in Javascript? problems with decimals

i've the following code in Javascript: var m1 = 2232.00; var percent = (10/100); var total = percent*m1; alert(total); The problem is that the variable "total" gives me "223.20000000000002" and it ...
0
votes
2answers
222 views

mvc3 decimal is rounding 2 places

I have a model that takes in latitudes and longitudes but for some reason when the model is created it keeps rounding the latitude/longitude to 2 decimal places instead of saving the whole value for ...
0
votes
2answers
193 views

Xcode - NSTimeInterval Years double value, how to get MORE decimals?

i wan't to know exactly how many years it is between 2 NSDate's. (current Date and Date picker date) i'm using NSTimeInterval (seconds) how to make it to years? This code will make the value to ...
0
votes
1answer
181 views

java Long rounding to 2 decimals absolute value

long value = Math.round(Math.abs(object.getSomeStuff()/1000)); My object.getSomeStuff() returns a 3 digit integer value. I want to get the absolute value and also round to 2 digits. Sample Input ...
1
vote
3answers
276 views

Javascript meal counter .toFixed plus add comma

<script> var START_DATE = new Date("January 01, 2013 00:00:00"); var INTERVAL = 0.25; var INCREMENT = 0.001; var START_VALUE = 0; var count = 0; function addCommas(str){ var arr,int,dec; ...
1
vote
2answers
122 views

Floating vs Fixed point numbers and performance

I'm curious on how quick floating point operations are on dedicated hardware vs fixed. With fixed point, say you have the number 555 and you want to multiply by 1.54, you'd load the values 555, 154, ...
2
votes
3answers
343 views

Limiting decimal places

I have a basic question. I'm not really good at programming. I'm trying to display an answer to 2 decimal places in my answer field. I have my JTextFields and my JRadioBtn set. When the answer comes ...
0
votes
1answer
83 views

Does NSInteger allow for decimal places?

I need to have someone type in a value say "40" and then the app converts this to anther value by dividing by 7.5. at the moment i've done: NSString *pCO2 = _pCO2.text; float thepCO2 = [pCO2 ...
0
votes
1answer
203 views

Handling decimal values in evaluating postfix using stacks in c++

I am new to posting and relatively new to coding in c++. My question involves: Handling decimal values in evaluating postfix using stacks in c++. This is a homework assignment, but I have already ...
9
votes
5answers
304 views

Why does 230/100*100 not return 230? [duplicate]

Possible Duplicate: Is JavaScript’s Math broken? In Javascript, I cannot figure out why 230/100*100 returns 229.99999999999997, while 240/100*100 returns 240. This also applies to 460, 920 ...
2
votes
0answers
78 views

Why is my result small but non-zero when reading an expected zero from a datareader?

I'm using Visual Studio 2005. I have a table (mysql 4.0) with a field (decimal 16,4) that stores the amount of an invoice and another table with the payments to this invoice (the fields are also ...
1
vote
4answers
207 views

Simple math with decimals in PHP

This is killing me! I've never had so much trouble and I can't figure out what I'm doing wrong here. If I have a number, say 2.32, and I want to do math with it it won't work out. The very simplest ...
-1
votes
1answer
264 views

Using Math.round in javascript adds weird number of 0s at the end [duplicate]

Possible Duplicate: Is JavaScript’s Math broken? I'm using Math.round to round the number and for some reason it adds weird number of 0s at the end which should not be there. Here is my ...
0
votes
2answers
117 views

Float type functionality [duplicate]

Possible Duplicate: Sum of float is not exact So i have the code: #include <iostream> using std::cout; using std::endl; int main () { float x = 0.0001; float y = 0; for ...
1
vote
0answers
106 views

Limit Decimal Places In Generated Numbers in R.Studio

I am a beginner in programmin in general and R specifically. I would like to generate a set of random numbers in a normal distribution but to limit the decimal places in these numbers to only 2. I ...
-1
votes
1answer
152 views

MySQL sum with negative decimals

I have a qty column in my table, and i'm trying to sum the values. The field type is varchar(20). The sum of qty below should add up to exactly 0. It's a mix of negative and positive decimals. ...
0
votes
1answer
57 views

Not showing decimals properly

Console.Write("Please type in the first floating point number: "); double floating_1 = Convert.ToDouble(Console.ReadLine()); Console.Write("Please type in the second floating ...
2
votes
1answer
686 views

ClosedXML: Working with percents, 1 decimal place and rounding?

I am attempting to use C# and ClosedXML to enter data into an excel sheet. I have found most of the things I am looking for, however I am having some issues getting ClosedXML to take care of the ...
0
votes
1answer
671 views

Fortran 77 decimals in real variables [closed]

I have to program in Fortran 77 and I never use it. I have a problem with real variables. I need to round a value to a certain number of decimal places before performing a calculation. I see the ...
0
votes
1answer
158 views

Knapsack DP with array of hashes

I'm trying to reduce the time and space needed by the Knapsack DP algorithm with non-integer values. http://en.wikipedia.org/wiki/Knapsack_problem#Meet-in-the-Middle_Algorithm In particular, if the ...
0
votes
3answers
71 views

Ruby decimal (8.0 + 63.27 = 71.27000000000001)

When doing the following in irb: 8.0 + 63.27 Yields the following result: => 71.27000000000001 Does anyone have a clue what's up with that? Better yet, does anyone have a clue how to correct this? ...
1
vote
2answers
243 views

Display decimals with a textview

Hi i want make so the TextView level can put out decimal but i don'ty know how to do that any one got an idea? NOw it only puts out 1 but i want it to put out 1.80. :) public class Main extends ...
0
votes
1answer
81 views

PHP Insert tabs in front of numbers/decimals and format them neatly

I have string (text, numbers, punctuation, etc.) that I want to format in a specific style. I have this: 1. TOC 1.1 Chapter 1.1 1.2 Chapter 1.2 1.3 Chapter 1.3 2. Automation 2.1 This is Chapter 2.1 ...
1
vote
1answer
63 views

MySQL Decimals ignoring Logical Operators

utility is a DECIMAL(10,2) column. SELECT * FROM items WHERE utility >= 50 This query returns things that have a utility of 4.25, for example. Does anyone know how to fix this?

1 2 3