Decimal is the name for our common base-ten numeral system. It may also refer to non-integer values expressed with a decimal point.

learn more… | top users | synonyms

0
votes
2answers
42 views

Putting a thread to sleep for decimal value

This question is about System.Threading.Thread.Sleep(int). I know there is no method for a decimal value, but I really need to work with decimals. Here is the situation I have a device which takes ...
1
vote
5answers
68 views

decimal to binary converter c++?

int inputNumber=0; int divisionStore=0,modStore=0; vector<int> mainVector; cout << "\nEnter a Number to Convert to Binary.\n" << endl; cin >> inputNumber; do { ...
1
vote
1answer
64 views

Million decimal places in python

We recently delve into infinite series in calculus and that being said, I'm having so much fun with it. I derived my own inverse tan infinte series in python and set to 1 to get pi/4*4 to get pi. I ...
0
votes
2answers
55 views

C decimal to binary without arrays

I think I've almost got it, but I feel like I'm go in circles trying to figure this out. The challenge to out cout without using strings or arrays. I took the number 56 as an example and 56 should ...
2
votes
4answers
36 views

How to round decimal values using Math.Round but keep trailing zeros

In my application certain fields contain decimal numbers. And it is possible to enter only 2 decimal points. After doing some calculations, the result is displayed, and the answer should also contain ...
-1
votes
0answers
58 views

Decimal points in java GUI calculator and other questions [closed]

The calculator runs as it is, but I have a problem getting decimal points to work for my calculator, I have no idea how to do it, everywhere I look has something different. I also need the number and ...
0
votes
2answers
36 views

Loop in bash from 0.01 to 0.5

I am creating a script in bash to call a command 100 times, varying a float parameter each time. I need to call it with 0.01, then 0.02, 0.03 up to 0.5. As I cannot create a loop using a float in the ...
0
votes
1answer
43 views

Converting a Numeric value fetched from a Dataset to a String Asp.net c#?

I have a numeric value like this in my db, 14192555.00 when i get it and put it in text box and convert it in to string it results in, this.txtPriorNYSDOTRating.Text = ...
2
votes
0answers
76 views

Numpy high precision

I am using numpy and pyfits to manipulate spectra and I require high precision (something like 8-10 decimal places on a value which might go as high as 10^12). For that the data type "decimal" would ...
8
votes
7answers
142 views

Decimal ToString() conversion issue in C#

I am facing a problem when I try to convert decimal? to string. Scenario is decimal decimalValue = .1211; string value = (decimalValue * 100).ToString(); Current Result : value = 12.1100 Expected ...
5
votes
1answer
70 views

Protobuf-net (de)serialization of decimals throws when using custom decimal proto contract (C#/C++ interop)

Say I want to serialize, then deserialize a decimal using protobuf-net: const decimal originalDecimal = 1.6641007661819458m; using (var memoryStream = new MemoryStream()) { ...
0
votes
1answer
14 views

rails: order query by big decimal attribute

I've got an active record model with an attribute of big decimal type. I wanted to be able to order with respect to this attribute being treated as a number. Instead I've got the following: 1.9.1 ...
0
votes
2answers
19 views

validate numbers by limitation in lenght and true decimal format

I want validate numbers by regular expression my valid numbers is : 123456789012345.123 or 123.9 or 0.686 before decimal point must be 1 to maximum 15 numbers and after it must be maximum to 3 ...
3
votes
2answers
36 views

PHP calculating with decimals

I get some rewards from a XMl and want to calculate the sum. Why isn't the output for $M_commission 166.63? $i = 0; $commission_trans = 0; foreach($responseXml->lead as $lead) { if ($i == 0) { ...
0
votes
1answer
12 views

An error with dec to bin

I have been debugging this function but I don't know why is it throwing 99 when I send 4 to the function. This is a function to covert from decimal to binary. Actually, I have tried to cout exp, res ...
1
vote
1answer
35 views

Assign python Decimal objects to MySQL DECIMAL columns

I have a table "City" defined as: CREATE TABLE `City` ( `id` int(11) NOT NULL, `lat` decimal(9,6) default NULL, `long` decimal(9,6) default NULL, `lm_index` int(11) default NULL, ...
0
votes
1answer
31 views

How to set UITextField for decimal values?

I have a ManageItemVC that has a bunch of UITextFields, and one is for price. I've put a placeholder as 0.00, and the user can use the decimal keyboard to input. I'd like to always keep it in a #.## ...
-6
votes
1answer
50 views

How to write a method that parses a decimal number into a binary number as a string [closed]

I have no clue how to start except I have my header. public static String convertDecimalToBinary(int value) That is all
6
votes
1answer
61 views

How to get boost multiprecision number parts?

Say I have this number: // bmp = boost::multiprecision bmp::cpp_dec_float n("123456789.1234567891011121314"); its backend data are: [0] 1 unsigned int [1] 23456789 unsigned int [2] ...
1
vote
1answer
53 views

PHP Issue Adding 0.001 to 0.001?

Hi I cannot seem to be able to work out how to incrementally add a very small number? $val = 0.000000001; $add = 0.000000001; for ($i=0; $i < 100; $i++) { $val = bcadd($val, $add, 9); ...
0
votes
2answers
42 views

How to Convert integer to decimal in oracle

how can i convert a integer to decimal in oracle? Is there any function like TO_CHAR? I need to put this function on a where clause. Thanks SELECT IDDS, ID FROM T_TABLEONE WHERE CAST(ID as ...
0
votes
2answers
43 views

How to parse the value to decimal?

Code: decimal pgr = decimal.Parse("$ 499.00"); I am getting the error message as System.FormatException: Input string was not in a correct format. How to parse a value to decimal?
0
votes
2answers
41 views

Force decimal value, even when 0 in oracle

I have a field that stores version information such as 1.1, 1.2 etc. However, it will store 4.0 as 4 and 5.0 as 5. Is there a way to force it to show the .0? I have tried NUMBER(5, 3) and DECIMAL(5, ...
2
votes
2answers
25 views

Several decimal for double in JAXB

I create XML with JAXB, and I want to put double inside tags: @XmlElement(name = "TaxFree") private double taxFreeValue; When I set value with setTaxFreeValue(4.5); in tags shows ...
0
votes
2answers
53 views

Java byte to int

I know there are N threads for this question but some people are using different and different methods to convert a byte to int. Is this correct what am I writing? Hex to int or hex to decimal? Which ...
0
votes
4answers
46 views

How do I fix the linker error? [closed]

In function main': [Linker error] undefined reference toBinary_to_Decimal()' [Linker error] undefined reference to `Decimal_to_Binary()' Working on decimal to binary and binary to decimal program. ...
-1
votes
0answers
46 views

Base to Decimal conversion

How Can I write Java program Foreign Base to decimal conversion ; Input values: Variable fv, a string containing the digits of the integer in a foreign base. Variable bv, a string containing only ...
0
votes
0answers
68 views

Rounding floats in Python

I am receiving the following error: line 46, in train deltaWeight = 0.1 * ((self.testOutputs[i][0] - self.outputUnits[0]) ** 2) OverflowError: (34, 'Numerical result out of range') I've ...
4
votes
5answers
67 views

How to judge a int number odd or even? (the binary way)

I wanna use basic knowledge to improve the efficiency of code. I know that in binary system. when the last digit of number is 1,this is a odd number.and 0 is even number. How to use this way to judge ...
0
votes
0answers
24 views

decNumber C library Visual Studio 2010 Compile error

I am getting errors compiling the decNumber C library in Visual Studio 2010 in Windows 7 64 -bit PC. I already tried the solutions offered at this post: decNumber library - compile issues but did ...
-5
votes
1answer
39 views

Samsung devices - no decimal input possible? [closed]

I have a problem with some devices of Samsung. They just ignore when i make an EditText for decimal input. It's not possible to enter a comma or a dot. ...
0
votes
1answer
40 views

Drawing a graph from an array of double values in Java?

I have an array of parsed double values from a csv file (a lot of them) and I would like to create some kind of a graphical graph/diagram prensentation. Is there any API designed for this? or is there ...
0
votes
3answers
73 views

How do you create a binary-Decimal conversion program? (format provided) [closed]

I was accidentally placed in a programming class rather than intro. to computers. Everything is completely over my head. Does anyone know how to do this? I need to code a decimal binary number ...
-3
votes
4answers
60 views

Decimal.ToUInt64 "Value was either too large or too small for a UInt64

I am doing: - Decimal production = 0; Decimal expense = 5000; Decimal.ToUInt64(production - expense); But it throws exception with the following error message. "Value was either too large or too ...
0
votes
3answers
46 views

Java - Floating point with limited decimal places but without coma

I'm developing a graphics computing application for my Computer Science course. I'm doing many calculations over vectors, but sometimes i'm getting some severe truncations since it's float ...
0
votes
2answers
56 views

Unexpected result when converting decimal to fraction

function gcd(a, b) { return (b) ? gcd(b, a % b) : a; } var dec2Frac = function (d) { var top = d.toString().replace(/\d+[.]/, ''); var bot = Math.pow(10, top.length); if (d > 1) { ...
0
votes
1answer
25 views

Option Strict On and Constant in Visual Basic?

Please forgive me, I haven't used this site very much! I am working in Visual Studio with Visual Basic. I finished programming my project with Option Strict Off, then when I turned Option Strict on, I ...
0
votes
4answers
37 views

Java - unexpected result when rounding a double/float to 2 decimals

I encounter a problem when round a double to 2 decimals. I know this questions have been asked in many places. But my question is slightly different and I cannot find it in other places. So far as I ...
2
votes
1answer
62 views

Oracle: Decimal and rounding

I have a value in the table 0.0821, and I want to convert it to 8.21. My SQL query is to_char(round(prdll_yr2.rate_chg_pct_qty *100 ),'9.99') But it returns 8.00 instead of 8.21.
0
votes
1answer
11 views

Should my map be able to use both types of latitude and longitude?

I hope this is the right place to post this. I'm a web designer who is doing a site for a client, except for their store location page, which I have contracted out to a Google map developer. The map ...
1
vote
2answers
63 views

How can I get value of char to convert to int?

I want to convert binary count to decimal. My code snippet : int main(){ string count; char number; int counter; int score = 0; cout << "Wpisz liczbę w systemie binarnym" ...
0
votes
0answers
28 views

How to convert decimal to binary in python given a number of bits? [duplicate]

How do I convert a decimal value to a binary value in python given a second variable that gives the number of bits to use? I am trying to write a function that accepts two arguments: a positive or ...
-1
votes
2answers
67 views

convert int to string with decimals

I want to write my own function in C for various reasons that converts an int to a string of decimals, just like sprintf. Example: int number = 254; char string[10]; sprintf(string, ...
0
votes
0answers
37 views

PHP Excel Reader numeric decimal

I am having an issue. I have a workbooks which contain numeric values formatted as 10.250.215,15 and 255,250.50. I am trying to read this values in a php-script and I have the following output: ...
0
votes
0answers
27 views

Represent a floating point number

Below are the instructions to the program, the title of this question is the actual title given in my homework. Input: A decimal number is given Output: Print given number in a 32-bit format Limit: ...
0
votes
0answers
36 views

jquery doesn't detect a change event in text boxes for fractional value changes?

I am using jQuery and created a change listener on some text boxes that hold numeric values with 2 decimal places, if the integer part is changed then an event is triggered, if one of the decimal ...
0
votes
1answer
43 views

Convertion of textbox value to single adds extra precision in C#

While converting value of a textbox to Convert.ToSingle() adds some extra precision for values like 2.7 to 2.7999999523162842. I don't want any rounding of this value because I have to store the exact ...
0
votes
0answers
40 views

Error showing decimal rather than ASCII in GUI Visual C++

Good day. I am facing a problem. I am using Visual Studio C++ and wish to create a Window Form Application. The purpose to create this program is to show the encrypted text from a textbox in a small ...
0
votes
0answers
11 views

How do I take a user's input that is a decimal number and then later use that number in equations?

#!/usr/bin/env python 3.3 C=4.184 start=input("This program will assist you in doing calorimetry problems. Press any to get started.") usrchoice=input("If you wish to solve a simple (coffee cup) ...
1
vote
2answers
63 views

Can I show/set the decimal separator required by Django DecimalFields?

I’ve got the following form in Django: class MyForm(forms.ModelForm): val = forms.DecimalField(localize=True) class Meta: model = MyModel with the following model: class ...

1 2 3 4 5 34