Decimal is the name for our common base-ten numeral system. It may also refer to non-integer values expressed with a decimal point.
3
votes
4answers
48 views
What is the most efficient way to convert an integer to the fractional part of a number in javascript?
I want to convert an integer to the fractional part of a number using javascript.
For example:
10030 -> 0.10030
123 -> 0.123
I've come up with two ways of doing this:
var ...
0
votes
3answers
56 views
Remove integer and only display decimal point in Python?
I am trying to calculate the square root of a number to where it looks like this:
Enter number for square root: 2
---------------------------------
.41
However, with the current code I have:
def ...
0
votes
3answers
51 views
How to Round Decimals to 2 Places after the Decimal Point (Java)
I am fairly new to java and I have to create this program to which I have no idea where to start. Can someone please help me with what to do and how to write the code to get started?
Write a program ...
0
votes
0answers
12 views
JSONObject removes decimal dot, if round number
Using a rest service, we are transfering values using JSON.
At some point, we need to decide, wheter the incoming value was a long or a double. While
Double d = 17.0;
...
0
votes
0answers
18 views
C# How to define decimal value for a class using sqlite?
I am writing a Windows 8 Apps that required decimal value in the class using SQLite.
I defined the class as below:
public class credit
{
[PrimaryKey, MaxLength(5), AutoIncrement]
public int ...
0
votes
0answers
16 views
SQL server database Column format decimal use with comma
I have a database (SQL) and have a column format decimal (18,2) When I was write 0,02 textbox on form and click save button wrong to me "Error converting data type varchar to numeric." this message. ...
0
votes
2answers
56 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
73 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
67 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
60 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
47 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
74 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
53 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
83 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
155 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
103 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
17 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
21 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
13 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
39 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
35 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
52 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
66 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
56 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
44 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
28 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
58 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
49 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
71 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
26 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
40 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
43 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
86 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
78 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
53 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
59 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
39 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
68 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
15 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
66 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
72 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
43 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:
...




