A number is a mathematical object used to count and measure.
3
votes
4answers
319 views
Summing up digits of a very long binary number?
I was asked by a friend :
If 2^10 = 1024 -- break apart the answer digits and sum its digits : 1+0+2+4 = 7.
This is easy.
However When the input is 2^30000 ( the input actually is a long string ...
0
votes
1answer
70 views
How to convert integer to its ordinal name?
I don't know if I'm asking too much, but. Is there a way to convert a number to its ordinal name in English? For example:
5 --> 'five'
251 --> 'two hundred fifty one'
2549 --> 'two thousand ...
0
votes
1answer
41 views
How to generate numbers in this sudoku board c++
I'm making a sudoku puzzle. I have the board done. But the problem is I'm really confused about how to generate numbers in this box. Because it's an array of Char. But I want to generate integers. ...
0
votes
0answers
52 views
Show counts in Venneuler R package
Does anybody know how to display the count of each subset in a Venneuler plot?
Also, how can I write the labels next to the circles instead of the default setting (inside the circles)?
Thanks very ...
0
votes
0answers
22 views
Issues when trying to read contents of an Excel cell
I'm using libxl library in order to read certain cell contents from an excel file and then I show the contents in a dataGridView.
void readXls(void)
{
Book* myBook = xlCreateBook();
...
0
votes
1answer
90 views
Round float values accurately with output required decimal point in Objective-C [closed]
How to round a float value like 1.449567 accurately.
The output value should be required decimal point floate value.
Output should be like this:
for 1 decimal point **f=1.5**
for 2 decimal point ...
0
votes
3answers
72 views
Convert Java Number to BigDecimal : best way
I am looking for the best way to covert a Number into a BigDecimal.
Is this good enough ? :
Number number;
BigDecimal big = new BigDecimal(number.toString());
Can we loose precision with ...
-5
votes
1answer
39 views
Generate randomly centers of clusters [closed]
Say I have two clusters that I would like to randomly generate their cluster center as follows:
rand(1,2)
I saw a code that uses the following for such generation:
rows*rand(1,2)
Why do you think ...
-2
votes
1answer
54 views
if doesn't work in javascript function
I use this function to validate one input element :
function validerInput(qte, qtemax) {
var floatRegex = /^((\d+(\.\d *)?)|((\d*\.)?\d+))$/;
if (floatRegex.test(qte.value)) {
var a = ...
0
votes
1answer
27 views
order of no. of comparisons required for taking pairs out of a set of n numbers
I have a set of n numbers S = {a1, ...an}. I have a classifier that takes a pair of any two numbers and produces a result. I discard pairs like (a, a). (ai, aj) is treated as different from (aj, ai).
...
1
vote
1answer
66 views
magento pagination numbers not working
I am working on existing magento site, and this is my first magento development.
There is option for "Items per page", but no pagination shown.
I need to show pagination with numbers like 1,2,3,4... ...
1
vote
2answers
66 views
n number of 1s using binary operations
Is there any way to get n number of 1s using only these binary operations ( !, ~, &, ^, |, +, <<, >> ) where n is an input?
Example,
n ---> output
0 ---> 0000
1 ---> 0001
2 ...
0
votes
3answers
54 views
keep format of number and decimal but remove everything else
I have a input fields for state and local tax.
Each field data is entered then I add both together to get totaltax.
I have tried number_format and round and print_f but none of them are working as I ...
0
votes
1answer
34 views
Combining a matrix of numbers, with array of strings
I am trying to compute the code seen below, in a more clever way, using MatLAB:
f=zeros(5,2) %Values irrelevant.
y = {'A1', 'B1';
f(1,1) f(1,2);
f(2,1) f(2,2);
f(3,1) f(3,2);
...
3
votes
5answers
288 views
How do I generate 6 random numbers between 1 and 6 using Java?
I am encountering a problem generating 6 random numbers between 1 and 6 in Java. All the numbers have to be unique. When I enter kolon value 5, the arrays should be like this:
1 2 3 4 5 6
1 2 3 4 5 ...
0
votes
0answers
14 views
LaTeX: Split long numbers? [migrated]
In most language, long numbers are split into groups of three digits, to increase readability.
In Dutch (my native language), 1000000 is usually written as 1 000 000. In English, this would be ...
3
votes
2answers
40 views
Negative numbers to binary string
Anyone knows why javascript Number.toString function does not represent negative numbers correctly?
//If you try
(-3).toString(2); //show "-11"
// but if you fake a bit shift operation it works as ...
0
votes
0answers
19 views
Jquery scientific form to expanded number
What I'm currently trying to do is create a web page that would allow a student to practice scientific notation to expanded form. Most of it is complete, what I need next is to create one function ...
0
votes
5answers
50 views
Count only numbers in list of numbers and letters
I'm new to Prolog and I can't seem to get the answer to this on my own.
What I want is, that Prolog counts ever Number in a list, NOT every element. So for example:
getnumbers([1, 2, c, h, 4], X).
...
1
vote
1answer
39 views
How to accurately convert numbers to strings in JavaScript
JavaScript stores all numbers in double-precision floating-point format, with a 52-bit mantissa and an 11-bit exponent (the IEEE 754 Standard for storing numeric values), and therefore its ...
-2
votes
0answers
42 views
Android Number Picker Manual and Scroll [closed]
How I can create a number where you can enter Picker manual and scroll?
The goal is that people can use it both ways.
Help me, please.
10
votes
2answers
324 views
Fast algorithm to optimize a sequence of arithmetic expression
EDIT: clarified description of problem
Is there a fast algorithm solving following problem?
And, is also for extendend version of this problem
that is replaced natural numbers to Z/(2^n Z)?(This ...
1
vote
1answer
41 views
Is there a Backbone-way to format numbers in the view?
Is there a special backbone-Way to format numbers? I want to display them with two decimal points, like "2" into "2.00".
Should this be done in the tepmlate?
This is one example from the template:
...
3
votes
1answer
73 views
is it ok to specialize std::numeric_limits<T> for user-defined number-like classes?
The documentation of std::numeric_limits says it should not be specialized for non-fundamental types. What about number-like user-defined types? If I define my own type T which represents a numeric ...
-2
votes
0answers
16 views
jstl format tag to format upto 10,8 fraction
I am trying to format the number 1234567890.12345678 but by using fmt:format for number it will convert it into 1234567890.12345670 is any solution to keep this number as it is
1
vote
3answers
62 views
Multiplying numbers in a string at specific positions
I'm trying to solve the 8th Project Euler problem.
Find the greatest product of five consecutive digits in the 1000-digit number.
I'm pretty sure I'm way off. I also tried a simpler program using a ...
-1
votes
1answer
32 views
Generating a Random Number for HTML
I am trying to generate a random number between two values that can be changed to whatever I choose. On the load of the page, I want the number to be shown in the body of my site.
Thanks!
0
votes
2answers
53 views
How to perform MySQL 'SUM' but to '0' decimal places?
I have a MySQL table containing account balances, which are stored as floats, with two decimal places, in a varbinary column type (because the values are AES_ENCRYPTED).
I realise that it's not ideal ...
0
votes
4answers
55 views
UILabel: adding 1 to a number when button pressed? [closed]
I am fairly new to this, I would really like some help on how to change a UILabel to add 1 to the previous number, everytime a the button is pressed. I.E i want it so when I press the button the ...
1
vote
1answer
35 views
allow input to be 2.d.p, if not prompt error msg
I want to make sure that when the user inputs the exchange rate and amount, he can only input it to 2.d.p, if the input is not 2.d.p then there must be a error message. How can i do this without ...
0
votes
3answers
60 views
RegEx to match only numbers incorrectly matching
I'm trying to use a regular expression in JavaScript to match a number or a number containing a decimal. The regular expression looks like [0-9]+ | [0-9]* \. [0-9]+.
However, for some reason this ...
0
votes
4answers
96 views
Python Regex Search string for all substrings having one or more numbers
In python, I have the following string:
"fish 14~ reel 14 rod B14"
I want to use REGEX to run through a for loop and return the location of each substring having one or more numbers in it. Ex.:
...
0
votes
1answer
46 views
AutoHotKey: Can I asign shift + number the way so it work like usual
A few days ago my Coca Cola bottle decided to accidently hit my keyboard. Now after I dried it off it's working all fine. However, there is a strange problem.
The SHIFT key is working perfectly as ...
18
votes
4answers
320 views
Make big and small numbers human-readable [duplicate]
I would like to print my very small numbers in C# in a human friendly way, such as:
30µ for 3E-5 or 456.789n for 0.000000456789.
I know of the Humanize_number() function from BSD in C, but only ...
3
votes
5answers
80 views
Format string/number “NNNNN”
I have to write a progression of number, having (each) 5 digit. My code is:
int count = 1;
string labelCount = "";
foreach (var directory in folderList)
{
if (count < 10)
{
...
0
votes
1answer
28 views
Chrome Developer tools numbers after each files name?
I was debugging my website using the developer tools, if you refer to my image, there are 2 styles.css overwrite one another.
It is weird though, because I remember I have only one style.css file ...
0
votes
1answer
39 views
Fibonacci Sequence ,binary search
I am trying to solve the following problem:
F is an infinite sequence of integers that satisfies to Fibonacci condition F(i + 2) = F(i + 1) + F(i) for any integer i. Write a program, which calculates ...
0
votes
4answers
39 views
PHP Regex Separate Number from String
I have the following string: 01SOMECOMPANY and I want to end up with 01 SOMECOMPANY. How do I do this using regular expressions?
-1
votes
1answer
53 views
Getting numbers before Char in Java
I am writing a mathematical program and I came across a problem reading formulas like:
AX^2*BX*C=AX^2*BX*C
The point is that i want to read the value (including decimals) of A, B and C ...
0
votes
2answers
36 views
Variable data type and changes to it
I am trying to find out a data type of a certain variable (it is a column in a db in RoR application). I would like to format it as a number with 2 decimals, but I want to first find out if it is a ...
0
votes
2answers
42 views
MSAccess Sorting column with text and numbers
I need to sort a column in my Access2010 Query correctly. It is a Textcolumn containing Strings with numbers like "CRMPPC1". The text length may vary within the column.
When I sort this it looks like ...
0
votes
0answers
9 views
Is there a way to Enable phone numbers as hyperlinks in Safari on mac 10.8.3?
I have a phone application running on my mac and want to be able to dial directly from safari with a single click. Is there a way to Enable phone numbers as hyperlinks in Safari on mac 10.8.3 ?
0
votes
3answers
631 views
How restrict textbox in C# to only receive numbers and (dot “.” or comma “,”), after “.” or “,” only allow 2 number characters
i am trying develop a code to restrict TextBox using C# to only allow numbers entry + comma(",") or dot(".") + only 2 numbers after dot or comma
So this way see possible numbers that can entry:
...
-5
votes
1answer
33 views
Number moving in place [closed]
I would like to make numbers change in place, for example i don't want something like this:
1
2
3
4
5
i want just to start at 1 and go to 9 without moving. Thanks!
0
votes
3answers
61 views
i m trying to generate random number but every time i am getting error ‘ranf’ was not declared in this scope [closed]
here is the code which is giving error 'ranf' was not declared in this scope.
the code is about generating random numbers with initial position and velocity.
i am not able to configure how to resolve ...
-4
votes
2answers
124 views
What exactly does '3.4E +/- 38 (7 digits)' mean? [closed]
I'm trying to understand the range of data types. For non-floating point numbers it's easy enough, but then for float and double the ranges are listed as:
float: 3.4E +/- 38 (7 digits)
double: 1.7E ...
0
votes
2answers
85 views
Best way to represent numbers of unbounded length?
What's the most optimal (space efficient) way to represent integers of unbounded length?
(The numbers range from zero to positive-infinity)
Some sample number inputs can be found here (each number ...
1
vote
3answers
52 views
RESOLVED Regex Newbie Remove all before and after Number X Number
I ask my first question here because i need to isolate some characters in
Fri 2 Mar 2012 11:14:25
JPEG 960x640 960x640+0+0 8-bit sRGB 64.7KB 0.016u 0:00.017
I want isolate 960X640 but this ...
1
vote
5answers
74 views
How to find closest number in a multidimensional array? [closed]
I got a mulitdimensional array that looks like this:
Array
(
[0] => Array
(
[name] => Name
[city] => Cityname
[county] => County
...
0
votes
2answers
13 views
How to increase by 1 withing (private static function)
I'm working on a new website with an API of Bol.com and I'm stuck at the moment.
My question is really simple, but i cant solve this issue. I just want to have a number for every div which needs to ...






