Tagged Questions
The numerical-analysis tag has no wiki summary.
10
votes
1answer
204 views
Binary GCD Algorithm vs. Euclid's Algorithm on modern computers
http://en.wikipedia.org/wiki/Binary_GCD_algorithm
This Wikipedia entry has a very dissatisfying implication: the Binary GCD algorithm was at one time as much as 60% more efficient than the standard ...
8
votes
4answers
170 views
Calculating average of two values, minimizing errors
I am doing some floating point calculations and the results are not as accurate as I want them to be.
This is the algorithm:
...
center = (max_x + min_x) / 2
distance = old_x - center
new_x = ...
8
votes
4answers
741 views
Integer cube root
I'm looking for fast code for 64-bit (unsigned) cube roots. (I'm using C and compiling with gcc, but I imagine most of the work required will be language- and compiler-agnostic.) I will denote by ...
8
votes
5answers
11k views
Signal processing library in Java?
I'd like to compute power spectral density of time series; do some bandpass, lowpass, and highpass filtering; maybe some other basic stuff.
Is there a nice open-source Java library to do this?
I've ...
7
votes
6answers
893 views
Bounding this program to determine the sum of reciprocal integers not containing zero
Let A denote the set of positive integers whose decimal representation does not contain the digit 0. The sum of the reciprocals of the elements in A is known to be 23.10345.
Ex. ...
6
votes
6answers
444 views
Analyzing noisy data
I recently launched a rocket with a barometric altimeter that is accurate to roughly 10 ft (calculated via data acquired during flight). The recorded data is in time increments of 0.05 sec per sample ...
6
votes
8answers
574 views
Minimization of f(x,y) where x and y are integers
I was wondering if anyone had any suggestions for minimizing a function, f(x,y), where x and y are integers. I have researched lots of minimization and optimization techniques, like BFGS and others ...
5
votes
2answers
163 views
Lambert W function implementation in Java
I'm working on a project and have found myself in a situation where I need a function to be able to get at least an approximation of the value of W(x), the Lambert W function, where x can be any real ...
5
votes
3answers
440 views
How to compute exact complexity of an algorithm?
Without resorting to asymptotic notation, is tedious step counting the only way to get the time complexity of an algorithm? And without step count of each line of code can we arrive at a big-O ...
5
votes
4answers
1k views
How to do numerical integration with quantum harmonic oscillator wavefunction?
How to do numerical integration (what numerical method, and what tricks to use) for one-dimensional integration over infinite range, where one or more functions in the integrand are 1d quantum ...
4
votes
3answers
174 views
Are there any books for numerical calculations in C++? [closed]
I tried to find a book. I need a good C++ book in numerical analysis. I need it for my graduate research.
4
votes
4answers
918 views
Best algorithm for avoiding loss of precision?
A recent homework assignment I have received asks us to take expressions which could create a loss of precision when performed in the computer, and alter them so that this loss is avoided.
...
3
votes
1answer
1k views
Solving equation using bisection method
Is there any bisection method I can find online? especially in python?
How can I solve these equation:
x^3 = 9
3 * x^3 + x^2 = x + 5
cos^2x + 6 =x
using bisection method?
Thank You
3
votes
2answers
545 views
Solve this equation with fixed point iteration
Is there any fixed point iteration code I can find online? especially in python?
How can I solve this equation ( x^3 + x -1 = 0 )using fixed point iteration?
Thank You
3
votes
7answers
692 views
Most efficient way to find min and max of a sin/cos curve in C#
Background: I have a function in my program that takes a set of points and finds the minimum and maximum on the curve generated by those points. The thing is it is incredibly slow as it uses a while ...
2
votes
3answers
98 views
matrix mul max value estimate
Given matrix product C = A*B, is there N^2 way to estimate max value in C? Or rather what is a good way to do so?
2
votes
2answers
185 views
Numerical Integration of area defined by set of coordinates?
Suppose you have a general shape defined by a bunch of coordinate points that form something that looks like a circle, ellipse, or general closed curve - how do you find the area bounded by these ...
2
votes
1answer
324 views
how do tell if its better to standardize your data matrix first when you do principal component analysis in R?
Im trying to do principal component analysis in R . There is 2 ways of doing it , I believe.
One is doing principal component analysis right away the other way is standardizing the matrix first ...
2
votes
8answers
1k views
Algorithm for multidimensional optimization / root-finding / something
I have five values, A, B, C, D and E.
Given the constraint A + B + C + D + E = 1, and five functions F(A), F(B), F(C), F(D), F(E), I need to solve for A through E such that F(A) = F(B) = F(C) = F(D) ...
1
vote
1answer
92 views
Clarification about Matlab Laplace Equation
I need help understanding the code and how the temperature TN is computed/stored. Specifically, I don't understand the double-loop beginning with while k<= imax. Here's the Matlab program to ...
1
vote
2answers
83 views
Which way has better accuracy to compute the matrix matrix vector product, A B u?
I want to compute the vector,
s = A B u,
where s and u are N-dimensional complex vector, A is a N-by-M complex matrix, B is M-by-N complex matrix. Which of the following two ways has better accuracy ...
1
vote
3answers
276 views
How accurate/precise is java.lang.Math.pow(x, n) for large n?
I would like to calculate (1.0-p)^n where p is a double between 0 and 1 (often very close to 0) and n is a positive integer that might be on the order of hundreds or thousands (perhaps larger; I'm not ...
1
vote
2answers
355 views
Addition vs Subtraction in loss of significance with floating-points
While learning about precision in floating point arithmetic and different methods to avoid it (using a conjugate, taylor series,...) books frequently mention the subtraction of two very similar ...
1
vote
3answers
324 views
polynomial evaluation accuracy, multiplication versus division
let us say I have have polynomial in x, divided by a power of x:
p = (a + x(b + x(c + ..)))/(x**n)
efficiency aside, which would be more accurate computation numerically, the above or using ...
1
vote
3answers
1k views
How to find mantissa length on a particular machine?
I'm wanting to find the number of mantissa digits and the unit round-off on a particular computer. I have an understanding of what these are, just no idea how to find them - though I understand they ...
0
votes
5answers
153 views
Numeric Only TextBox
I've looked all over the place, but it seems that examples I have seen allow only numbers 0-9
I'm writing a Pythagorean Theorem program. I wish to have the phone (Windows Phone 7) check if there are ...
0
votes
1answer
165 views
iOS5 Objective-C library for numerical analysis or GNU Octave wrapper class?
I'm doing some numerical estimation and correction with the Kalman filter, and would like to better estimate my parameters of Q and R, preferably dynamically.
...
0
votes
0answers
19 views
need help understanding Apache Commons Math BracketFinder
I will start off by saying that this feels like it should be easy... but it's not entirely obvious to me. I am trying to use the BrentOptimizer to find local minima and maxima of a function. I have ...
0
votes
1answer
94 views
Rules-of-thumb doc for mathematical programming in R?
Does there exist a simple, cheatsheet-like document which compiles the best practices for mathematical computing in R? Does anyone have a short list of their best-practices? E.g., it would include ...
0
votes
3answers
81 views
c++ numerical analysis Accurate data structure?
Using double type I made Cubic Spline Interpolation Algorithm.
That work was success as it seems, but there was a relative error around 6% when very small values calculated.
Is double data type ...
0
votes
1answer
82 views
Numerical pitfalls without extended precision FPUs
Monniaux's excellent article, "The Pitfalls of Verifying Floating Point Arithmetic", gives examples of unexpected numerical behavior. However, most of the examples depend on extended precision FPUs or ...
0
votes
1answer
118 views
Numerical integration of a function with values known at a given point set (finite and discrete) over an area bounded by discrete points?
Let D be the area bounded by a series of points {x_i,y_i} (1<=i<=N).(The area need not to be convex and the points are supposed to go along the boundary curve.)
Let f be a function defined on D ...
0
votes
3answers
245 views
C library of single-precision transcendental functions
I am looking for a library of C mathematical functions (trigonometric functions, exponential, logarithm, ...) that would take and return single-precision floats. The library would have to be available ...
0
votes
2answers
459 views
fixed point iteration algorithm
I am asked to write a program to solve this equation ( x^3 + x -1 = 0 ) using fixed point iteration.
What is the algorithm for fixed point iteration?
Is there any fixed point iteration code sample ...
0
votes
2answers
290 views
Parallelising Cholesky decomposition for use in training a machine learning algorithm
I am trying to work out if I can parallelise the training aspect of a machine learning algorithm. The computationally expensive part of the training involves Cholesky decomposing a positive-definite ...
0
votes
1answer
584 views
When to use DBL_EPSILON/epsilon
The DBL_EPSILON/std::numeric_limits::epsilon will give me the smallest value that will make a difference when adding with one.
I'm having trouble understanding how to apply this knowledge into ...
0
votes
2answers
155 views
Convergence of BFGS for convex over-parameterized problems
It is "well-known" that the BFGS optimization algorithm is superlinearly convergent for strictly convex problems, but is there any analysis for problems that are non-strictly convex. For example, ...
0
votes
1answer
119 views
Implementation of GNU Scientific Library?
Does anyone know a collection of articles or books that describes the implementation of the GNU Scientific Library?
This question is not about using the GSL; it's about how the GSL is implemented, ...
0
votes
2answers
99 views
Articles on analysis of mixed precision numerical algorithms?
Many numerical algorithms tend to run on 32/64bit floating points.
However, what if you had access to lower precision (and less power hungry) co-processors? How can then be utilized in numerical ...
0
votes
6answers
1k views
Using Taylor Series to Avoid Loss of Precision
I'm trying to use Taylor series to develop a numerically sound algorithm for solving a function. I've been at it for quite a while, but haven't had any luck yet. I'm not sure what I'm doing wrong.
...