This tag is for questions concerning problems using numbers which either cannot be exactly solved, or where the exact solution may be much more difficult to acquire than by using numerical methods.

learn more… | top users | synonyms

1
vote
0answers
17 views

Interpolaton algorithm to correct a slight clock drift

I have some sampled (univariate) data - but the clock driving the sampling process is inaccurate - resulting in a random slip of (less than) 1 sample every 30. A more accurate clock at approximately ...
-2
votes
2answers
24 views

A Past Numeric Date without Time

I've been searching and I can't find a solution for this. I need javascript code that displays the date in the mm/dd/yyyy without displaying the time, but I need it to be a past date. Like for ...
1
vote
4answers
32 views

php cast string to either int or float

I'm looking for a function that would cast a numeric-string into either integer or float type depending on the content of the string, e.g. "1.23" -> float 1.23, "123" -> int 123. I know I can use ...
3
votes
1answer
34 views

General product of multiple tensors in python

In python (preferrably under numpy array framework), what is the best way to do product of multiple tensors at once, instead of doing it one-by-one using numpy.tensordot? Let's suppose we need to do ...
0
votes
1answer
22 views

How to check whether an input is numeric or not in multiple TextBoxes?

I am currently working on an exam in programming using VB, and I am trying to make two subs for only text input and only numeric values. To code that for one textbox is easy, but I cant seem to ...
4
votes
2answers
52 views

convert data.frame to a numeric matrix

I have a data frame taken from a .csv-file which contains numeric and character values. I want to convert this data frame into a matrix. All containing information is numbers (the non-number-rows I ...
0
votes
4answers
62 views

Recursive numeric triangle in python

I'm trying to create a triangle like the following: 1 2 3 4 5 6 2 3 4 5 6 3 4 5 6 4 5 6 5 6 6 Without using while, for in, lists, etc. Just "if-else" cases and recursive functions. I've just ...
0
votes
2answers
31 views

MATLAB: Reading Text File As Numbers (Table)

I'm working with MATLAB GUI. So, I want users to browse their own table from their computer. When they have browsed, the full path will be written on the static text, and the table (that they browse) ...
0
votes
0answers
41 views

textbox asp net validator for numerical, accept decimal

i want to make textbox that contain numerical value, but it have to accept decimal number valid: 1 1.2 1.23 1.234 0.0011 etc but it will give error message if 1,234 1,23abc 1.3454.21 this is ...
0
votes
1answer
19 views

Need regular expression that will work to find numeric and alpha characters in a string

Here's what I'm trying to do. A user can type in a search string, which can include '*' or '?' wildcard characters. I'm finding this works with regular strings but not with ones including numeric ...
0
votes
1answer
27 views

Lucene.net search by numeric value(as string)

I indexes documents with text and numbers. To create an index I use analyser = new SnowballAnalyzer(Version.LUCENE_30, "English"); I use Snoschballanalyzer because I need morphology(table - ...
-2
votes
1answer
44 views

How to do a “Filing cabinet” sort on alphanumeric strings [closed]

Is there a simple way to do a "Filing cabinet" sort of strings containing both alpha and numeric characters? I.e. a list such as: [aa2, ab2, bb1, bc1, ab3, aa3, ba2, ba1, aa1, ac1, bb2, bb3, ...
0
votes
1answer
22 views

JavaScript Validation - Numeric input only and working backspace

I work on input validation (numeric input from kaybord only). Which works fine but the problem is that i can not use backspace button. Delete button works well. My code: function validate(evt) { ...
0
votes
0answers
22 views

Replace headings in Word document with a unique numeric value

I have a huge Word document. I want to replace all of its headings with a unique numeric value, say, 10001,10002,10003, and so on. So maybe the heading is h1 or h2 or h3 or h4 or other higher levels, ...
0
votes
2answers
90 views

PHP form numeric validation

I have been trying too use PHP to validate my form. The form asks users to enter details which will then get entered into a table in a database once the form has been validated. I have a customer ID ...
0
votes
3answers
60 views

How to convert factor format to numeric format in R without changing the values? [duplicate]

Below is dataframe df1 of which I want to convert column "V2" from factor format to numeric without changing the current values (0 ; 0 ; 8,5 ; 3). df1= V1 V2 V3 X2 X3 4470 ...
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
3answers
41 views

Create a table with integer or numeric(4.0) in dBase width Jet.4

I want to create a table (.DBF file) with an Integer(4) field using Microsoft Jet dBase Provider. There is my code : Dim conn As New OleDb.OleDbConnection Dim comm As New OleDb.OleDbCommand ...
0
votes
1answer
37 views

Why tag '.' doesn't work in NSRegularExpression

I have this string : NSString* yourString = @"(;GM[1]FF[4]SZ[19]AP[CGoban Pro:2.2]PW[Michael Redmond]WR[9p]DT[2010-12-12]KM[6.5]RE[B+0.5]AN[Michael Redmond]BK[1]C[toto : [test]]"; And i have this ...
0
votes
2answers
54 views

PHP Sorting array with values 0,1,2…8,9,10,11,12 etc

My array has values that start as single digits and then increase upto the thousands. I'd like to sort on $id, but have the results as : 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 ....etc NOT ...
2
votes
1answer
74 views

Java, Weka: How to predict numeric attribute?

I was trying to use NaiveBayesUpdateable classifier from Weka. My data contains both nominal and numeric attributes: @relation cars @attribute country {FR, UK, ...} @attribute city {London, ...
0
votes
1answer
32 views

postgresql numeric type without trailing zeros

When use numeric type, for example like this numeric(4,2) and if store in him number 1.2, at end of number are adding zeros for filling scale part right? that is result is 1.20 There is possible to ...
0
votes
1answer
91 views

Numeric Data Validation in C++

I have looked everywhere but I can't seem to find and implement an input validation that only takes in integers, I have my code running perfectly fine but my only problem is that since ive added my ...
0
votes
2answers
27 views

How do I compare two different numeric variables and changing one variable if one the first variable is greater than the second? (AS3)

An example: If A = 5 And b = 6 If 2 is added to A, I want A and b to = 7. I want B to change only when A is greater than B and then I want B to copy the same number as A. I hope this explains what i ...
2
votes
1answer
174 views

angularjs: allows only numbers to be typed into a text box

In angularjs is there any functionality available that allows only numbers to be typed into a text box like
3
votes
2answers
223 views

Java regular expression to validate numeric comma separated values

I need to make a regular expression with such numbers valid: "+1", "1.0", "1,233", "1,233,456.34", "-1", ".34", "1,345,234,122,123" and these invalid: "++1", "1.0.0", "1,23,3", "+-1233456.34", ...
0
votes
1answer
75 views

Defining a trait with a method that return a value of different numeric type

I have several classes that contains a numeric value (that value can be bounded, can be only positive, aso...) I must make some basic operations (like summing) based on a 'supertype' of those ...
1
vote
2answers
60 views

R for-loop and lists with non-numeric argument to binary operator error

Thank you in advance for you time in helping me with my problem. I am trying to write a program to calculate the standard difference of several different groups and the last step has me a little ...
0
votes
1answer
55 views

jQuery validation dependency expression with numeric field

I have this snippet: <input type="checkbox" name="sal_cart" id="sal_cart"> <input type="text" name="sal_unit_price" id="sal_unit_price" class="required"> sal_unit_price can be numeric ...
2
votes
2answers
72 views

python numpy.convolve to solve convolution integral with limits from 0 to t instead -t to t

I have a convolution integral of the type: To solve this integral numerically, I would like to use numpy.convolve(). Now, as you can see in the online help, the convolution is formally done from ...
1
vote
2answers
70 views

Create numeric value from character value in sas

I want to conver a code like "13232C" to a numeric value. Maybe assign values 1 to 26 for A to Z. Then the new code would be "132323".
0
votes
3answers
65 views

“isnan” doesn't seem to work

Simply trying to catch non numeric input Read MANY items . Tried decimalDigitCharacterSet (found it hard to believe that something that starts with the word "decimal" doesn't contain a decimal). Tried ...
0
votes
0answers
52 views

kendo autocomplete on numeric field

Trying to use autocomplete but my dataTextField is an integer. So I keep getting "tolower" or "indexof" error. Cant find a single example of someone trying to autocomplete with numbers. HELP! PS: ...
0
votes
1answer
135 views

Knockout validation issues

I have the following issues with my knockout model validations and not sure how to resolve them. Following is my model first of all, with the validation rules: var Data = function (data) { this.Val = ...
2
votes
2answers
55 views

is_numeric eliminating negative numbers in Ruby

I'm a new user here and also beginner with Ruby. I need to eliminate the negative values (numbers) from is_numeric?. So the code is this way: class String def is_number? true if Float(self) ...
2
votes
1answer
125 views

Default iPad AlphaNumeric Keyboard into Numeric Mode

I have a UITextField for users to enter their street address. I have Keyboard appropriately set to Default for the field. Since most people's street addresses start with a number, I would like it to ...
0
votes
1answer
13 views

Internet Explorer URL with Just Numeric Characters

We want to publish a web site with URL numeric characters. URL is like http:// 444. When we wrote the URL and hit. It brings an error page. And URL returns to http:// 0.0.1.188 When i try it in ...
1
vote
0answers
23 views

Numeric symbols in password fields

Is there a way to make password fields on the web page to distinguish between numbers on main keyboard and num pad?
0
votes
0answers
22 views

Returning np.array or np.matrix objects in a theano function

I have to do something like this. import theano as th import theano.tensor as T x, y = T.dscalars('x', 'y') z = np.matrix([[x*y, x-y], [x/y, x**2/(2*y)]]) f = th.function([x, y], z) # causes ...
0
votes
2answers
568 views

Javascript select() value

I am sure this is super easy, but for some reason I just can't figure this one out. I need to create a form on the page with the following fields and rules. If the user submits a form but the rules ...
0
votes
1answer
97 views

How to format a column with awk and printf when values are either numeric or string

I have the following file, where I want to left-pad with zeros when the value is numeric, but leave it as it is when value is a string: cat test.txt 2032 12 XXXXX 507 334 This works only for ...
0
votes
0answers
72 views

Numeric only textbox not working IME enabled

I am using the following function to make a text box numeric only $(document).ready(function() { $(".numeric_text_box").keydown(function(event) { if(event.keyCode==9) return ...
0
votes
1answer
79 views

Python's decimal module and the table maker's dilemma

According to the documentation, the .exp() operation in Python's decimal module "is correctly rounded using ...". Because of the table maker's dilemma, I hope that's not guaranteed, since I'd ...
0
votes
4answers
960 views

Checking to see if text box input is numeric

I've done some research on this and still cannot get my program to work. I simply need to check the text box to see if the user input is a numeric value, or not (with the exception of a "." and or ...
1
vote
2answers
59 views

R cannot use hist() because “content not numeric” due to negative decimal numbers?

I am new to R and I am trying to draw a histogram using hist() of a list of 100,000 numbers like this -0.764 -0.662 -0.764 -0.019 0.464 0.668 0.464 but I cannot do it because R complains that the ...
0
votes
0answers
9 views

Replace and right formula not returning number value

I have imported from another worksheet and the problem i have the program returns from its report as 77 - 05 = 72 and from looking at previous posts ive tried using =right(a1,2) as the only data i ...
1
vote
1answer
116 views

Calculate area between two curves (that are normal distributions)

I need to calculate the area between two curves. I have lots of data, so I'd like to do it programmatically. Basically, I always have 2 normal distributions, calculated from a mean value and standard ...
3
votes
2answers
59 views

R - Getting the AirPassenger data set into numeric matrix fomat

I want to use the AirPassenger set for exploration, e.g., making a heatmap. Unfortunately I don't get it into a numeric matrix format. It doesn't even have columns >ncol(AirPassengers) NULL ...
2
votes
1answer
58 views

How to verify if a vector is really recovered?

In compressed sensing, how to verify if a vector is recovered or how could one plot the figures on recovery rate? since in numerical experiments, there is always a difference between the original ...
1
vote
1answer
71 views

Numerical Problems with cancellation in C++

I do have a problem with cancellation in floating point arithmetic. I know where the problem lies, but I can't think of an efficient solution. Here is my problem: I have a particle simulation in 3D, ...

1 2 3 4 5 11