Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

63
votes
31answers
140k views

How to allow only numeric (0-9) in HTML inputbox using jQuery?

I am creating a web page where I have an input text field in which I want to allow only numeric characters like (0,1,2,3,4,5...9) 0-9. How can I do this using jQuery?
37
votes
6answers
14k views

Is there a (built-in) way in JavaScript to check if a string is a valid number?

I'm hoping there's something in the same conceptual space as the old VB6 IsNumeric() function?
35
votes
4answers
6k views

Why does Perl think “0 but true” is a number?

Scalar::Util's looks_like_number seems to be the commonly suggested way to determine whether a string is a number. Why does it consider the string "0 but true" to be a number ? use Scalar::Util ...
20
votes
4answers
848 views

More on generic Scala functions

Trying to implement, in Scala, the following Haskell function (from Learn You a Haskell...) so that it works with Int, Double, etc. doubleUs x y = x * 2 + y * 2 Note that this is similar to Scala: ...
14
votes
6answers
1k views

Generic constraint to match numeric types

I'm trying to write an extension method on numeric types to be used in a fluent testing framework I'm building. Basically, I want to do this: public static ShouldBeGreaterThan<T>(this T actual, ...
14
votes
15answers
11k views

c# evaluating string “3*(4+2)” yield int 18

Is there a function the the .Net framework that can evaluate a numering expression contained in a string and return the numeric result? IE: string mystring = "3*(2+4)"; int result = ...
8
votes
3answers
218 views

Problem using pair with accumulate

I am using a deque so I can generate rolling averages and variances for my data. I store n and n^2 as a pair in the deque and then use accumulate with my own operator+(). #include <deque> ...
8
votes
2answers
391 views

How to set up implicit conversion to allow arithmetic between numeric types?

I'd like to implement a class C to store values of various numeric types, as well as boolean. Furthermore, I'd like to be able to operate on instances of this class, between types, converting where ...
7
votes
3answers
124 views

IsNumeric returns true for strings containing a D character

I had a strange error in a VB6 app this morning and it all stems from the fact that IsNumeric is not working as I expected. Can someone shed some light on why? To me this seems like a bug. This code ...
6
votes
4answers
116 views

javascript (jquery) numeric input: keyCode for '3' and '#' are the same

I need to set up an <input type="text" /> so that it will accept only numeric chars, backspace, delete, enter, tabs and arrows. There's a lot of exemple around there, i started with something ...
6
votes
5answers
176 views

How do I check and handle numbers very close to zero

I have some math (in C++) which seems to be generating some very small, near zero, numbers (I suspect the trig function calls are my real problem), but I'd like to detect these cases so that I can ...
6
votes
1answer
155 views

Comparisons of arbitrary arithmetic types: does anyone know an implementation?

While writing several math utilities I bumped into need to implement generic utility that can perform comparisons between any two fundamental arithmetic types. As I began coding, it became clear that ...
6
votes
3answers
185 views

Is there a fast product operation for PackedArrays?

In Mathematica a vector (or rectangular array) containing all machine size integers or floats may be stored in a packed array. These objects take less memory, and some operations are much faster on ...
6
votes
2answers
270 views

Haskell's type system treats a numerical value as function?

After playing around with haskell a bit I stumbled over this function: Prelude Data.Maclaurin> :t ((+) . ($) . (+)) ((+) . ($) . (+)) :: (Num a) => a -> (a -> a) -> a -> a ...
6
votes
3answers
3k views

Fast implementation/approximation of pow() function in C/C++

I m looking for a faster implementation or good a approximation of functions provided by cmath. I need to speed up the following functions pow(x,y) exp(z*pow(x,y)) where z<0. x is from ...
6
votes
2answers
6k views

Validation in textbox in WPF

I am currently working on a WPF application where I would like to have a TextBox that can only have numeric entries in it. I know that I can validate the content of it when I lost the focus and block ...
5
votes
1answer
85 views

How to make code using Value[T : Numeric] more “flexible” like the “unboxed” counterparts?

If I have code like 5 * 5.0 the result gets converted to the most accurate type, Double. But this doesn't seem to work with code like case class Value[T : Numeric](value: T) { type This = ...
5
votes
2answers
377 views

3.days.ago, 2.hours.from_now etc without Rails?

Some book mentioned some gem to decorate numbers with #days, #megabytes, #minutes etc. Is this only in ActiveSupport, or is there a smaller gem that provides this functionality for use in (small) ...
5
votes
3answers
599 views

How to convert time (mm:ss) to decimal form in R

I've imported a csv-file to R using RStudio where I am trying to plot points per game against minutes per game. However the minutes per game is in the format mm:ss and I'm having a hard time finding ...
5
votes
2answers
348 views

Is there a simple method of converting an ordinal numeric string to its matching numeric value?

Does anyone know of a method to convert words like "first", "tenth" and "one hundredth" to their numeric equivalent? Samples: "first" -> 1, "second" -> 2, "tenth" -> 10, "hundredth" -> 100 Any ...
5
votes
5answers
1k views

How can I disable scientific notation when working with very large numbers in Perl?

Consider the following: print 3 ** 333; #Yields 7.6098802313206e+158 My question is simple: How can I disable scientific notation when working with very large numbers? Basically, I'd like to see ...
5
votes
4answers
317 views

What are your experiences with numerics libraries for C#, and which would you recommend?

By numerics library I mean a library providing data types such as matrices, vectors, and common (numerical) linear algebra algorithms. Optionally FTT and statistical algorithms. I'm primarily ...
4
votes
2answers
143 views

Comparisons with Scala's Numeric types?

How can one create a class which does math and comparisons on any numeric type in Scala? One obvious approach: import math.Numeric.Implicits._ class Ops[T : Numeric] { def add(a: T, b: T) = a ...
4
votes
1answer
118 views

Scala Generics and Numeric Implicits

I need to pass two functions as parameters to a scala function. That function should then evaluate them and get a number from them where it will then operate on. This number can be either a Int, ...
4
votes
1answer
94 views

Does it make sense to define a class for Complex numbers, where real/imaginary parts use Numeric[T] instead of a concrete type?

Would something like class Complex[T: Numeric](real: T, imag: T) make sense, instead of writing a Complex class using Doubles, one using Longs, one using BigInts, so that everyone can choose the ...
4
votes
3answers
115 views

PHP - Get array value with a numeric index

I have an array like: $array = array('foo' => 'bar', 33 => 'bin', 'lorem' => 'ipsum'); echo native_function($array, 0); // bar echo native_function($array, 1); // bin echo ...
4
votes
3answers
2k views

python nan and inf values

is it possible to set a number or an element of an array to NaN in Python? Additionally, is it possible to set a variable to +/- Inf? If so, is there any function to check whether a number is Inf or ...
4
votes
8answers
1k views

PHP float bug: PHP Hangs On Numeric Value

I just read an interesting article about php hanging on certain float numbers, see The Register and Exploring Binary. I never explicitly use floats, I use number_format() to clean my input and ...
4
votes
2answers
334 views

Tracing Python warnings/errors to a line number in numpy and scipy

I am getting the error: Warning: invalid value encountered in log From Python and I believe the error is thrown by numpy (using version 1.5.0). However, since I am calling the "log" function in ...
4
votes
4answers
175 views

What is the advantage of Sql Data Type numeric?

What is the advantage of Sql numeric data type ( like numeric(10,2)). What is the difference between decimal and numeric? And also what is the type match in .net for numeric?
4
votes
2answers
473 views

Scala - implicit conversion of Int to Numeric[Int]

I've created a class that can be parameterised by anything that can be converted to Numeric class Complex[T <% Numeric[T]] (val real : T, val imag : T) { //... complex number methods ... } ...
4
votes
6answers
239 views

C# - Numeric Suffixes [closed]

Possible Duplicate: Declaration suffix for decimal type Hey everyone, In the following snippet of code; RewardValue is a decimal: dto.RewardValue = 1.5; Now, this gives me the following ...
4
votes
1answer
215 views

Discrepancy between the values computed by Fortran and C++

I would have dared say that the numeric values computed by Fortran and C++ would be way more similar. However, from what I am experiencing, it turns out that the calculated numbers start to diverge ...
4
votes
2answers
690 views

double precision in Ada?

I'm very new to Ada and was trying to see if it offers double precision type. I see that we have float and Put( Integer'Image( Float'digits ) ); on my machine gives a value of 6, which is not ...
4
votes
2answers
1k views

MySql Not Like Regexp?

I'm trying to find rows where the first character is not a digit. I have this: SELECT DISTINCT(action) FROM actions WHERE qkey = 140 AND action NOT REGEXP '^[:digit:]$'; But, I'm not sure how to ...
4
votes
8answers
2k views

How do I construct a std::string from a DWORD?

I have following code: Tools::Logger.Log(string(GetLastError()), Error); GetLastError() returns a DWORD a numeric value, but the constructor of std::string doesn't accept a DWORD. What can I do?
3
votes
4answers
115 views

How to convert character of percentage into numeric in R

I run into a problem when converting character of percentage to numeric. E.g. I want to convert "10%" into 10%, but as.numeric("10%") returns NA. Do you have any ideas?
3
votes
1answer
67 views

how exactly do Javascript numeric comparison operators handle strings?

var i = ['5000','35000']; alert((i[0] < i[1])?'well duh!':'fuzzy math?'); alert((Number(i[0]) < Number(i[1]))?'well duh!':'fuzzy math?'); What's happening here? In the first alert, the text ...
3
votes
2answers
81 views

Making matrix numeric and name orders

I have the following data: yvar <- c(1:150) replication <- c( rep(c(rep(1, 10), rep(2,10), rep(3,10)),5)) genotypes <- c(rep(paste("G", 1:10, sep= ""), 15)) environments <- ...
3
votes
5answers
100 views

How do i check for numeric value in C language?

This question has been asked before, but i've never found a clear and simple answer, so i'm asking it again... I'de like to know, without using any other library than stdio.h, how to check if what ...
3
votes
2answers
145 views

How does ‘1 * BigInt(1)’ work and how can I do the same?

I try to implement some number type and I hit the issue that mynum * 1 works, but not 1 * mynum I tried to define an implicit conversion like this case class Num(v: Int) { def * (o: Int) = ...
3
votes
4answers
145 views

PostgreSQL: IN A SINGLE SQL SYNTAX order by numeric value computed from a text column

A column has a string values like "1/200", "3.5" or "6". How can I convert this String to numeric value in single SQL query? My actual SQL is more complicated, here is a simple example: SELECT ...
3
votes
3answers
129 views

How can i convert a factor column that contains decimal numbers to numeric?

I have a csv file and when i use this command SOLK<-read.table('Book1.csv',header=TRUE,sep=';') I get this output > SOLK Time Close Volume 1 10:27:03,6 0,99 1000 2 ...
3
votes
4answers
186 views

Returning NaN or throwing an exception?

I have a function that gets a sample (an std::vector<double>) as input and computes the average of the sample: what is the best way to handle the empty input vector case? My first idea is to ...
3
votes
2answers
130 views

VHDL: Code to put a numeric value in a STD_LOGIC_VECTOR variable

I would like to enter a number in a a variable of type STD_LOGIC_VECTOR but I have problems with the compiler. signal cl_output_ChA : STD_LOGIC_VECTOR (16-1 downto 0); cl_ouput_ChA <= ...
3
votes
1answer
400 views

Make JSpinner completely numeric

I've a Jspinner that can vary from minimum to maximum at steps of 0.1. This is working perfectly fine. Now, I set the editor of JSpinner as NumberEditor as the user can edit the textbox and I want ...
3
votes
2answers
455 views

Create a numeric text box in java Swing with increment and decrement buttons

How can I create a numeric text box in java swing , which has two buttons (up and down) which increments and decrements the value in the text box respectively. Also this text box must be editable with ...
3
votes
3answers
332 views

How to convert Python decimal to SQLite numeric?

I have a program that reads financial data in JSON and inserts it into an SQLite database. The problem is when I'm inserting it into SQLite numeric column and it doesn't seem to like the decimal ...
3
votes
2answers
155 views

What does the datatype specification '9(7)V9T' mean?

In some functional specs I'm reading they are talking about a numeric format with a 9(7)V9T presentation. -How do I interprete this kind of format notations? -How is this type physically stored in a ...
3
votes
1answer
318 views

Lucene: searching numeric fields

In Lucene, I would like to build a 'fuzzy' query over numeric fields. Currently all I found was the NumericRangeQuery class to search numeric fields. In the application I am building, the user is to ...

1 2 3 4 5 6