A number is a mathematical object used to count and measure.
1
vote
0answers
24 views
MATLAB: Quickest way to convert numeric array to a cell array of strings
In general terms I need to process many text files with mixed data types, both numeric and text. For the numeric data, I need to process them for quality since I deal with many sources of data and ...
2
votes
1answer
37 views
javascript Number constructor strange behaviour
Converting string to number produces incremented value:
var n = '9999999999999999';
console.log(n); // -> 9999999999999999
var nn = Number(n)
console.log(nn); // -> 10000000000000000
How to ...
0
votes
5answers
47 views
Float number formatting issue [duplicate]
I am using this code:
DecimalFormat df = new DecimalFormat();
df.setMinimumFractionDigits(2);
df.setMaximumFractionDigits(2);
float a=(float) 15000.345;
Sytem.out.println(df.format(a));
I am ...
0
votes
0answers
58 views
nvd3 y axis values, need help feeding data into graph/formatting
I'm trying to graph my data with nvd3 and having a hard time. Here's a sample of what my data looks like:
[{"key":"Castle / Ambient temperature (degrees Celsius)","values":[{"unix
...
0
votes
0answers
31 views
One script modifying the other's output?
I'm having difficulties making these two scripts operate together.
The first script changes numbers 0-9 to its respective image, while the second displays a count-up occurring at a set ...
0
votes
1answer
41 views
Batch Script creating mutliple text files with incrementing numbers inside
I'm trying to right a script that creates multiple text files from a list of image names but I need each of them to have an incremented number in the contents. So far I've come up with this
setlocal ...
0
votes
1answer
35 views
how do i generate sequence numbers in the for loop
i need help to generate a sequence numbers in the for loop i have code but it is not working properly as i want to do it is not generating series numbers?
i want script generate number like this
...
2
votes
1answer
18 views
Hide first “Zero” on a number value with xml
i'v got a problem...
I Need to show some prices in my website from database.
I'm using this function to show them:
<xsl:value-of select="entry/name"/>
My problem is this: due to "sorting ...
1
vote
4answers
69 views
How to check the float variable contain Real Numbers or not in c++?
How to check the float variable contain Real Numbers or not in C++ ?
ex: -1.#IND000 my value
How to determine whether it is Real numbers or like above numbers .
0
votes
2answers
55 views
Converting numbers 0-9 to images?
I'm quite new to JavaScript, but am attempting to write a script that will convert text numbers to an image (of the number). How might I go about this?
P.s. I did find this code online, but it seems ...
0
votes
1answer
41 views
Retrieve Contact name from phone number
I've been looking everywhere since the past few days to find a way to retrieve a contact name using a phone number I already have stored in a variable, unfortunately everything I found so far seems to ...
0
votes
1answer
24 views
cannot have space when exceding three integer with f:converternumber jsf2
I want to see all number like that : 123 456.67 : a space when I exceeded 3 integer and always two fractions number
I tested that :
<f:view contentType="text/html" locale="en" ...
0
votes
1answer
19 views
Generic Textchange Event
I am creating a android phonegap app, I want to create a generic textbox number validation for entering only numbers (0-9). No decimals(.). I can easily do it by passing different 10 different id to ...
-1
votes
1answer
40 views
Using replace method to replace numbers [closed]
I want to replace numbers like this:
Replace("55","a");
Replace("555","b");
I have the number 555 and want replace it with the letter b but when I run the code the program replaces 55 to a so the ...
1
vote
2answers
21 views
Is it possible to add wrapped numbers without boxing/unboxing?
I'm getting a Long value as a result of some method. Now, when I want to add 1 to that number, the compiler warns me about the value being boxed / unboxed to perform the sum.
public Long ...
0
votes
2answers
45 views
Generating random numbers in a generic class
I want to generate random id numbers in a generic class.
The user is supposed to be able to choose from most of the Number implementations.
Is my approach safe in the case of casting from Long to ...
0
votes
3answers
29 views
Adding commas in numbers of four or more digits
I have a php script that echoes the view count of a Youtube video using the Youtube API. However, I would like it to add commas when reaching views in the thousands and over.
My code is below:
$JSON ...
0
votes
0answers
12 views
LaTeX page number position [migrated]
I want to position page numbers in my document in top-right corner. I managed to do so using fancyhdr (see below).
\usepackage{fancyhdr}
\hypersetup{%
pdfborder = {0 0 0}
}
...
0
votes
3answers
69 views
i need help to generate a sequence numbers in the for loop
i need help to generate a sequence numbers in the for loop i have code but it is not working properly as i want to do it is generating random numbers?
if for loop reached to the 999 then ...
-3
votes
4answers
56 views
Lisp function adding odd numbers from a subset
I need to make a fucntion in a clisp that would add all odd numbers from a set.For example subset (2,8), the result would be 15(3+5+7).any suggestions?
I do have something like this, where a is the ...
-3
votes
1answer
41 views
Discover why downloads on Google Play are increasing fast [closed]
One of my apps on Google Play, called Snake Train recently begin to increase downloads numbers.
This app always have average of 50 downloads/day, but now it increasing without reason, and go to ...
-1
votes
0answers
52 views
How to set min value for Kendo web grid numeric field filter?
I am using KendoUi web grid with MVC. I have a integer column. I need to prevent user to enter negative values in the filters from the numericdropdown.
Please guide me how can I achieve this?
0
votes
2answers
23 views
Octave - array to number
I have an array a=[0 1 0 1 1 0] and I would like to turn the content of that array into a number ( a=010110 ). How do I do that?
And I would also like to to the opposite:
if I have a number ...
1
vote
1answer
51 views
How to convert Java JSpinner number to int ?
In Java, I've been trying to cast a JSpinner number input to an integer using Netbeans. I've made it so that the JSpinner input is a number, but I can't try to cast it to my own integer without ...
0
votes
1answer
26 views
PHPBB checking input is number
I'm using data_verification to check the values from the post array as follows...
if ($_POST)
{
$validate_array = array(
'recipe_name' => array('string', false, 5, ...
1
vote
4answers
80 views
Replace all floats with doubles
Is it possible to use some construct to replace all floats with doubles (or the opposite) without refactoring?
For example you may be implementing some mathematical system that works perfectly ...
0
votes
1answer
20 views
How to access to numbers from *.txt file in matlab?
I have a data.txt file like:
123 124 125 126
I want to compare these number against num
My code is like this
data= textread('data.txt','%d');
num = 125;
if num == data
b = 1;
...
2
votes
2answers
40 views
SQL Select where id is in `column`
I have a column that has multiple numbers separated by a comma. example for row:
`numbers`:
1,2,6,66,4,9
I want to make a query that will select the row only if the number 6 (for example) is in ...
0
votes
5answers
82 views
Java Random number but not zero
int num = 10;
Random rand = new Random();
int ran = rand.nextInt(num);
if (ran==0){
ran= ran+1;
}
else{
System.out.println("random : "+ran);
}
This is what i have coded so ...
0
votes
2answers
35 views
Preventing overlap of number ranges
I failed at this problem for several hours now and just can't get my head around it. It seems fairly simple from a "human" POV, but somehow I just can't seem able to write it into code.
Situation: ...
0
votes
1answer
19 views
formatting double and float once and for all in jsf2 application
I do a lof of manipulations, calculs with numbers (especialy double (#0.00) )
and I ask if is there a way to format those numbers once and for all
I use this converter for the momentfor each double ...
0
votes
1answer
19 views
how to return a string method in a class?
here's some code i got in python and i am stuck about how to print a string method in a class in python...please help out if you can...thnx a lot...
the code is below!
class Rat:
""" A rat ...
-1
votes
0answers
13 views
how to return a string method in python class?
here's some code i got and i am stuck about how to print a string method in a class in python...please help out if you can...thnx a lot...
the code is below!
class Rat:
""" A rat caught in a ...
1
vote
4answers
61 views
Calculate number of years and days in mintues
Here is my code:
public class numberOfYears {
public static void main(String args[]){
String minsString = JOptionPane.showInputDialog("Enter numbers of minutes:");
double mins = ...
0
votes
1answer
50 views
Deserialize JSON into a generic map, forcing all JSON floats into Decimal or String, in Jackson
I am using Jackson in the jsonrpc4j to access a remote service. In my Java application there are no defined classes for the return values, so deserialization produces generic LinkedHashMaps. So I ...
3
votes
2answers
160 views
Delphi7, Randomize, choose random numbers from 1 to 6, but not 0
i'd like to make 2 dices, but i don't want it to choose 0, this is my code:
procedure TForm1.Button1Click(Sender: TObject);
var x1,x2:integer; text1,text2:string;
begin
randomize;
x1:=random(7);
...
-2
votes
3answers
55 views
Operator '>' cannot be applied to operands of type 'TopTrumpGame.ChanceCard' and 'TopTrumpGame.ChanceCard'
Hi Guys i'm trying to make my first GUI game compare two numbers gained from a chance card.
public void button3_Click(object sender, EventArgs e)
{
mine = new ChanceCard();
MessageBox.Show("Chance ...
0
votes
1answer
36 views
Octave - random generate number
I have a simple question about randomly generating numbers in Octave/Matlab.
How do I randomly generate a (one!) number (that is either 0 or 1)?
I could really use an example.
Thanx
0
votes
4answers
70 views
Why does my random generator always return 0?
I have it set up so If a 0 is returned, than an image of a dice with a 1 on it is set to the place of a buttons image. It does this with different values and images too. 0 = Dice 1, 1 = Dice 2, 2 = ...
0
votes
3answers
25 views
Little NumPad in tkinter
I'm trying to build a little num pad using tkinter, to be able to enter a password code on a pure touchsystem. This is what I have so far:
import tkinter
from tkinter import ttk
def main():
root ...
0
votes
1answer
49 views
Datagridview Number Format
I am trying to create a datagridview that will automatically format the numbers that a user enters. My datagridview is not linked to a datasource, it is built programmatically like so:
Private Sub ...
0
votes
1answer
96 views
Get the IMSI number or destination phone number from incomming message (SMS)
I am developing an application that requires the IMSI/phone number of the device(with multiple SIM cards) which receives an sms.
This is basically for identification purpose of which SIM is receiving ...
-1
votes
2answers
34 views
Avoiding floating point overflow?
Is it possible to avoid floating point overflow?
If so, how?
If not, what if you use your own representation of a floating point number- is there some different way you can create to represent it ...
-1
votes
1answer
30 views
array of an even number of integers and pair [duplicate]
I want to make an array of an even number of integers to be given given as pairs in the order
and to be like this:
height_1, IQ_1, height_2, IQ_2, etc.
The input will be like this:
...
0
votes
2answers
51 views
prime factor python nightmare
Been trying to get python to return the highest prime factor of a number and, 11 days of banging my obviously dumb head later I's ready to ask for help. Any idea why this won't return the highest ...
0
votes
2answers
39 views
Parse Integer.class out of BufferedReader(InputReader) input
I'd like to write generic code for parsing user input and comparing it to an array of classes, then casting the input accordingly. I.e.:
Object[ ] paramTypes = { String.class, String.class, ...
1
vote
1answer
61 views
Merge Sort on an array of floating point numbers of fixed size 25 (C programming language)
My code is as follows:
void mergeSort(float a[], int first, int last) {
//Function performs a mergeSort on an array for indices first to last
int mid;
//if more than 1 element in ...
0
votes
5answers
49 views
Generate a List of Unique Random Numbers
So, I have a random number generator, where it generates 10 numbers between 1 and whatever the user inputs as the maximum. It worked well, but I want to make it so it doesn't generate duplicate ...
1
vote
1answer
108 views
Reading an array with floating point numbers (C programming language)
I am creating a function to read in inputs from the user and put them into a floating point array of numbers with predetermined fix size of 25. It also returns the total amount of items that the user ...
0
votes
1answer
36 views
gmp_pow() will not accept a GMP number for exponent
I am playing around in PHP with RSA and big numbers. I need to be able to take numbers to the power of an exponent that has ~256 to ~512 bytes using gmp_pow(). Does anyone have any suggestions?


