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.
0
votes
2answers
30 views
Numerical Integration in MatLab
I am trying to compute an integral using Matlab's dblquad. To do it I first wrote a script function. My code is
function z = IntRect(x, y)
%The variables
z0=20;
x0=15;
y0=20;
...
0
votes
2answers
20 views
Trapezoidal Numerical Integration in MATLAB without using a FOR loop?
I'm following a Numerical Methods course and I made a small MATLAB script to compute integrals using the trapezoidal method. However my script uses a FOR loop and my friend told me I'm doing something ...
0
votes
0answers
13 views
Why do I get “estimated error” -1.#IND when doing BICGSTAB linear solver using ILUT perconditioner in eigen
I want to ask a question, when I use eigen (C++ library, do numerial linear computing) to solve a linear equations, I use bi-conjugate gradient BICGSTAB with Incomplete LU preconditioner, however, the ...
0
votes
2answers
59 views
Numerical integration in C++
Hello I need to integrate a function (of two variables).
I know i can do it by using Fubini theorem to integrate one variable functions then using numerical methods such Rectangle method or ...
0
votes
1answer
66 views
MATLAB; Lagrange Polynomial, an Interesting Error
In my school homework I was given a problem, that required me to calculate Lagrange polynomial. The data set (x,y) involved x = 0,1,2....20,
while y = x - 0.3*rand() + 1;
Then we were asked to ...
0
votes
1answer
27 views
Numerical Format in SortedDictionary
I want to store large strings converted to decimals in a SortedDictionary (as the key) but they must fit a certain format...Due to the nature of sorting strings, they will not be placed correctly as a ...
0
votes
1answer
18 views
Calculating an integral of two numerical solutions of an ode
I would like to calculate an integral, which is determined by two functions: I(T) = ∫0T i( f(t), g(t)) dt where f and g solves ordinary differential equations and i is known.
The obvious approach ...
0
votes
1answer
46 views
Solving a non-polynomial equation numerically
I've got a problem with my equation that I try to solve numerically using both MATLAB and Symbolic Toolbox. I'm after several source pages of MATLAB help, picked up a few tricks and tried most of ...
0
votes
2answers
44 views
Ideas for scientific modelling
I was assigned a project in my intro to computer programming class. The goal is to implement a numerical model to some engineering or physics/science problem. The course uses Java.
eg. soccer ball ...
0
votes
0answers
6 views
Convert Numerical string WITH operators directly to integer
Is it possible to Convert Numerical string WITH operators directly to integer. for example "2+2+(5*7*8)+9-1" to an integer directly in java? please help me. I want to make a scientific calculator ...
1
vote
2answers
96 views
Checking Numerical Precision in Algorithms
what is the best practice to check for numerical precision in algorithms?
Is there any suggested technique to resolve the problem "how do we know the result we calculated is correct"?
If possible: are ...
2
votes
1answer
150 views
How to solve two equations numerical by Python?
Maybe it´s the easiest way to show you the code and try to explain it later:
sigma_aussen = 7.1
roh_aussen = 38
lambda_schreib = 532*10**-9
lambda_rek = 432*10**-9
sigma_aussen=radians(sigma_aussen)
...
2
votes
3answers
190 views
gamma or log gamma function in C or C
I am seeking a C or C++ version of gamma and log gamma functions.
Are there any code pieces or libraries recommended?
If possible, I want to know the principle of the implementations.
Thank you!!!
0
votes
1answer
19 views
Analysis of Image superimposing using numerical analysis
I need few Resources to get the help for my above topic. The above topic depicts that: one image will be imposed on the other one. and we have to shown it using numerical analysis. of course ...
0
votes
0answers
65 views
Is there a way to convert python to exe (like py2exe) when Python has both Pygame and Numerical Python in it?
Otherwise, I'm either going to have to switch language or make my game with a massive number of files to doing colour switching of images manually.
0
votes
0answers
43 views
Strange behavior from Evaluate[] in Mathematica
So I'm using Mathematica to numerically solve a series of coupled ODEs to get some parameters along a curve. NDSolve outputs InterpolationFunctions, which plot just fine and yield the correct solution ...
0
votes
1answer
62 views
Efficient numeric computation in PHP [closed]
I have to do a large numeric computation in my PHP script, basically multiplication of two large arrays. Variable/memory management of PHP seems to be very slow for this task, which is of course no ...
0
votes
0answers
51 views
PYGAME - Edit colours of an image (makes white red at 255,0,0) without numerical python?
I'm making a simple game, whereby I want my characters quite customizable. I want my characters to be able to be fully edited in colours, for example, if a player wants their character to have cyan ...
0
votes
1answer
116 views
Uitableview sort numerically
Long story short, I have begun working with uitableview a not long ago. I finally got everything down except for proper sorting.
I can sort ascending and descending but not numerically
I have been ...
0
votes
0answers
33 views
How to increase the CPI of the following two numerical functions?
Part 1, Nrm2 of a Vec3
std::pair<TYPE, TYPE> Nrm2() const
{
TYPE r2 = Coord[X_COORD] * Coord[X_COORD] +
Coord[Y_COORD] * Coord[Y_COORD] +
Coord[Z_COORD] * ...
0
votes
2answers
75 views
what is the range for Hindu–Arabic (ARABIC-INDIC) numeral utf8 from 0 to 9
I have been googling this for the past few days.
what is the range for Hindu–Arabic numeral utf8 from 0 to 9:
to use in regex.
0
votes
1answer
31 views
How to get numerical value (PHP/Wordpress)
I don't know why but I can't get any numerical value from the following code.
$key_1_value = get_post_meta($post->ID, 'Begin', true);
$Begin = do_shortcode('[countup ...
4
votes
3answers
115 views
Generate letters to represent number using ruby?
I would like to generate a sequence of letters i.e. "A", "DE" "GJE", etc. that correspond to a number. The first 26 are pretty easy so 3 returns "C", 26 returns "Z", and 27 would return "AA", 28 "AB", ...
2
votes
2answers
122 views
TypeError 'float' object is not callable while using a for loop [closed]
# Prototype of N-R for a system of two non-linear equations
#evaluating functions of two variables
# f(x,y)=1.6 * x ** 2 + 3.6 * x * y - 7.8 * x - 2.6 * y + 5.2
# g(x,y)=0.9 * y ** 2 + 3.1 * x **2 - ...
0
votes
2answers
1k views
segmentation fault 11 in mac, but not in linux, gcc compiler
I have a code which uses standard routines of numerical recipes for finding eigen vectors of a 3x3 matrix. While the code runs perfectly on linux machines, it fails with a segmentation fault 11 on ...
1
vote
0answers
67 views
Why does this scipy.odr fit using custom jacobians segfault?
I am trying to use scipy.odr to fit measured data points to my model. While fitting without specifying jacobians works, but produces bad results for some models, I get segmentation faults when ...
-4
votes
2answers
61 views
Numerical issues when adding and subtracting
I am wondering if it is possible that the following C program prints something else then 0?
double f(double x, double y) {
return x*x/x+x*x*x; // or whatever operations using *, /, +, -
}
int ...
0
votes
1answer
300 views
How do I approximate the Jacobian and Hessian of a function numerically?
I have a function in Python:
def f(x):
return x[0]**3 + x[1]**2 + 7
# Actually more than this.
# No analytical expression
EDIT: It's a scalar valued function of a vector.
How can I ...
1
vote
0answers
94 views
sine with fixed point input
I would like to know if there exists an implementation of the sine/cosine function that takes a fixed point input. I would prefer such an implementation for error reduction purposes. A simple version ...
0
votes
1answer
55 views
Creating a numerical variable order
I have a set of data with 3 columns: index column (with no name), colour, colour of seed, and germination time.
How do I create a numerical variable called 'order' with values 1 to 22 (the number of ...
2
votes
2answers
108 views
Converting variables to factors in R [duplicate]
Possible Duplicate:
identifying or coding unique factors using R
I'm having some trouble with R.
I have a data set similar to the following, but much longer.
A B Pulse
1 2 23
2 2 24
2 2 ...
0
votes
1answer
85 views
What are some (recommended) resources/book on learning C++ coding for efficient/performant math routines? [closed]
I would like to start learning and understanding what and when to optimize in a code meant for real time simulations (especially for games). There are various code snippets out there, most comparing ...
3
votes
1answer
110 views
Numerical classifier (?) Weka / R
I have a numeric dataset (as a database table) with a "n to m" relation. For example:
A | B
-----
1 | 1
1 | 2
1 | 9
4 | 2
7 | 8
7 | 11
And I would like to "train" a classifier (using weka?) to tell ...
1
vote
0answers
41 views
Mistake in using gsl_multiroot_fsolver
I am a very bad programmer, so beware of the high probability that I have done a very stupid mistake. I am writing C and using gsl_multiroot_fsolver_hybrid wrong, any help will be much apprteciated!
...
1
vote
1answer
279 views
Java - All characters have a numerical value?
I am doing some homework for my first programming class, yay! :)
However, one of the programs I need to do, sorts any set of characters that a user inputs. It can be any character (& or $ or 5 or ...
1
vote
1answer
780 views
Matlab-Bisection method -Numerical analysis?
i have written my bisection function and i think it works pretty good . I will post my code if needed-asked . I have made also the graph for the non linear equation (not a poly) and i can see the ...
0
votes
1answer
85 views
is it possible to use COLT with large matrices?
I started using COLT at some point, and now my code is using a lot of its functionality.
I now need to be able to handle large sparse tensors or matrices. The tensors are very sparse, but their ...
0
votes
1answer
158 views
How to make this algorithm stable
I have to compute the iterative version of this formula:
f(i)=integral ( x^i/(4x+1) ) from 0 to 1
Using these formulas:
f(0)=ln(5)/4;
f(i)=1/(i+1) - 4*f(i+1);
I have tried tried the ...
2
votes
2answers
123 views
How does the size of a binary influence the execution speed [closed]
How does the size of a binary influence the execution speed? Specifically I am talking about code written in ANSI-C translated into machine language using the gnu or intel compiler. The target ...
1
vote
3answers
725 views
How to detect significant change / trend in a time series data?
So I have an array of say 25 samples and I would want to be able to note the trends of whether it's decreasing n or increasing from those 25 sample time interval(basically 25 samples array is my ...
1
vote
4answers
136 views
Get equidistant intervals on approximated bark scale
Wikipedia says we can approximate Bark scale with the equation:
b(f) = 13*atan(0.00076*f)+3.5*atan(power(f/7500,2))
How can I divide frequency spectrum into n intervals of the same length on Bark ...
0
votes
4answers
74 views
Force different characters at different positions
I'm currently working on a project in which I need to fetch street/city details from a DB using a zipcode. Dutch zipcodes use a "1111 AA" format, I would like to have this entered in a single input ...
0
votes
1answer
97 views
Python 3 - Issue with filtering numerical input
I'm trying to control input to allow only greater than 0 numbers, but upon testing this block of text, if I enter an illegal character first (a string, 0 or negative number), receive the error output ...
0
votes
0answers
27 views
Is it possible to add numbers in the log domain without losing accuracy?
I have a list of probabilities, but they are too small to be stored directly as doubles, so I am storing their log. This is fine as long as all I want to do is to multiply them (just add the logs), ...
24
votes
4answers
5k views
What is the correct way to raise an integer to a positive integer power in C++?
We know that for various reasons, there is no standard integer power function in C++. I'm performing exact arithmetic with rather small integers, what is the correct way to compute powers?
0
votes
1answer
126 views
solve for a parameter such that area under curve equals 1
I have just found that I can use the function trapz in Matlab to find the area under a curve given a vector. What I want to do is to normalize the values in this vector in such that the area under the ...
2
votes
2answers
131 views
Mixing numpy and OO in numerical work
First, I'd like to know if it's good practice in general to use an OO approach in numerical work.
Second, a possible use case for OO would be to encapsulate in some object the parameters of some ...
3
votes
2answers
755 views
Fitting a line that passes through the origin (0,0) to data
I have a set of points (x,y) and I need to find the line of best-fit that passes through the origin using MATLAB.
1
vote
1answer
494 views
Numerically integrate a function f(x) over x using MATLAB where f(x) has another argument y which is a vector
I would like to numerically integrate a vector which represents a function f(x) over the range of x specified by bounds x0 and x1 in Matlab. I would like to check that the output of the integration is ...
1
vote
2answers
249 views
Round number to specified number of digits
Is there a simple function to round a Double or Float to a specified number of digits? I've searched here and on Hoogle (for (Fractional a) => Int -> a -> a), but haven't found anything.


