The numerical-computing tag has no wiki summary.
1
vote
2answers
36 views
get vector which's mean is zero from arbitrary vector
as i know to get zero mean vector from given vector,we should substract mean of given vector from each memeber of this vector.for example let us see following example
r=rand(1,6)
we get
...
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 ...
4
votes
2answers
125 views
Best Scala collection type for vectorized numerical computing
Looking for the proper data type (such as IndexedSeq[Double]) to use when designing a domain-specific numerical computing library. For this question, I'm limiting scope to working with 1-Dimensional ...
1
vote
1answer
88 views
A Classical Numerical Computing MATLAB code
f(x) = (exp(x)-1)/x;
g(x) = (exp(x)-1)/log(exp(x))
Analytically, f(x) = g(x) for all x.
When x approaches 0, both f(x) and g(x) approach 1.
% Compute y against x
for k = 1:15
x(k) = 10^(-k);
...
1
vote
3answers
168 views
Which way is more accurate?
I need to divide a numeric range to some segments that have same length. But I can't decide which way is more accurate. For example:
double r1 = 100.0, r2 = 1000.0, r = r2 - r1;
int n = 30;
double[] ...
2
votes
1answer
226 views
Inverse Incomplete Gamma Functions in Matlab
I have a problem which is posed in terms of incomplete Gamma functions and inverse incomplete Gamma functions. Recall that where a Gamma function is a particular integral from 0 to infinity, ...
7
votes
3answers
459 views
Fast complex number arithmetic in Clojure
I was implementing some basic complex number arithmetic in Clojure, and noticed that it was about 10 times slower than roughly equivalent Java code, even with type hints.
Compare:
(defn plus ...
1
vote
7answers
231 views
Rounding errors in python
why the order of multiplications can impact the results? Consider the following code
a=47.215419672114173
b=-0.45000000000000007
c=-0.91006620964286644
result1=a*b*c
temp=b*c
result2=a*temp
...
1
vote
0answers
89 views
Computing roots of a very high degree polynomial
Here is my problem ; for my research, I believe that the complex numbers I am looking at are precisely the (very large) set of roots of some high degree polynomial, of degree $\sim 2^n$ (~ 2^n) where ...
1
vote
2answers
837 views
How to calculate the double integral Numerically in Mathematica?
How to calculate the double integral Numerically in Mathematica ?
Integrate[Exp[-0.099308 s]
* Integrate[Exp[0.041657423 u] Exp[-3.1413 s + 3.12 u]
* ((u/(s - u))^(1/2) ...
3
votes
2answers
127 views
In UMFPACK, how often do we need to do symbolic and numeric factorization?
I have a system Ax = b, where B is a constant, but A keeps changing by small amounts in each iteration. I am using UMFPACK 5 to solve this linear system again as again as A changes. I can do the above ...
4
votes
1answer
209 views
Can I use rounding to ensure determinism of atomic floating point operations?
I am developing a C application which needs floating-point determinism. I would also like the floating-point operations to be fairly fast. This includes standard transcendental functions not ...
1
vote
2answers
392 views
Load sparse scipy matrix into existing numpy dense matrix
Say I have a huge numpy matrix A taking up tens of gigabytes. It takes a non-negligible amount of time to allocate this memory.
Let's say I also have a collection of scipy sparse matrices with the ...
7
votes
2answers
589 views
What are the advantages of using Ruby NArray over Array?
I just came across the NArray library for Ruby -- please excuse my ignorance when asking this question :)
What are the advantages of using the NArray library over the standard Ruby Array ...
4
votes
2answers
665 views
Numeric function for log of sum in Python
Given log(a) and log(b), I want to compute log(a+b) (in a numerically stable way).
I wrote a little function for this:
def log_add(logA,logB):
if logA == log(0):
return logB
if ...
0
votes
2answers
166 views
A Numerical Computing Library for C
I’m looking for a good numerical computing library for C programming language.
Similar to LAPACK with good documentation would be very helpful.
Thanks & Regards,
Upul
2
votes
1answer
157 views
Solving nonnegative linear system in R
Is it possible to find a solution to the undetermined system Ax = b, x >= 0 using some native R function? I can certainly write a linear program and use lpsolve, but am hoping for something native.
1
vote
1answer
400 views
Is there any way to print at least 20 significant figures in Octave?
I need to print the result of a program with 20 significant figures, but I don't know how to print more than 15 figures (format long). Is there any way to achieve this?
6
votes
4answers
701 views
C++ Numerical truncation error
sorry if dumb but could not find an answer.
#include <iostream>
using namespace std;
int main()
{
double a(0);
double b(0.001);
cout << a - 0.0 << endl;
for (;a<1.0;a+=b);
cout ...
1
vote
3answers
216 views
Efficiency of manually written loops vs operator overloads
in the program I'm working on I have 3-element arrays, which I use as mathematical vectors for all intents and purposes.
Through the course of writing my code, I was tempted to just roll my own ...
2
votes
2answers
676 views
Given a number series, finding the Check Digit Algorithm…?
Suppose I have a series of index numbers that consists of a check digit. If I have a fair enough sample (Say 250 sample index numbers), do I have a way to extract the algorithm that has been used to ...
7
votes
4answers
453 views
How to do numerical simulation with immutable data in Clojure?
I'm using Clojure and I need to run a small simulation. I have a vector of length n (n is usually between 10 and 100) that holds values. On each simulation round (maybe 1000 rounds together), one of ...
7
votes
6answers
6k views
What's the relative speed of floating point add vs. floating point multiply
A decade or two ago, it was worthwhile to write numerical code to avoid using multiplies and divides and use addition and subtraction instead. A good example is using forward differences to evaluate ...
79
votes
29answers
15k views
What ever happened to APL? [closed]
When I was at University 30 years ago, I used a programming language called APL. I believe the acronym stood for "A Programming Language",
This language was interpretive and was especially useful ...