Top "Numeric" questions

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.

R: numeric vector becoming non-numeric after cbind of dates

I have a numeric vector (future_prices) in my case. I use a date vector from another vector (here: pred_…

r date binding numeric
How can I use SYNCSORT to format a Packed Decimal field with a specifc sign value?

I want to use SYNCSORT to force all Packed Decimal fields to a negative sign value. The critical requirement is …

numeric mainframe jcl syncsort packed-decimal
Convert currency with commas into numeric

I have a column in a dataframe as follows: COL1 $54,345 $65,231 $76,234 How do I convert it into this: COL1 54345 65231 76234 The way …

r formatting currency numeric
React Native - how to key number pad ONLY (without punctuations)

Is there a way to key a numeric keypad without punctuations? <TextInput keyboardType='numeric' ..... /> if I use secureTextEntry={…

react-native keyboard numeric
C# - Numeric Suffixes

Possible Duplicate: Declaration suffix for decimal type Hey everyone, In the following snippet of code; RewardValue is a decimal: dto.…

c# numeric
Python curve fit library that allows me to assign bounds to parameters

I'd like to be able to perform fits that allows me to fit an arbitrary curve function to data, and …

python scipy numeric curve-fitting pyminuit
Sybase IQ: Converting a string to NUMERIC without error/exception

I'm using Sybase IQ and need to convert a field from string to NUMERIC. The field sometimes has characters other …

numeric sap-iq
how to find global minimum in python optimization with bounds?

I have a Python function with 64 variables, and I tried to optimise it using L-BFGS-B method in the minimise function, …

python optimization scipy numeric mathematical-optimization
Recode numeric values in R

I want to recode some numeric values into different numeric values and have had a go using the following code: …

r numeric recode
Why does the xor operator on two bytes produce an int?

//key & hash are both byte[] int leftPos = 0, rightPos = 31; while(leftPos < 16) { //possible loss of precision. required: byte, found: int …

java casting byte numeric xor