Tagged Questions
The numerical-computing tag has no wiki summary.
55
votes
28answers
10k views
What ever happened to APL?
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 ...
6
votes
4answers
376 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 ...
5
votes
4answers
353 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 ...
3
votes
2answers
127 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 ...
3
votes
6answers
3k 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 ...
2
votes
2answers
155 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 ...
2
votes
1answer
71 views
What data format can be written from Java (Clojure) and read by Paraview?
I have some Clojure code that generates a regular 3D grid of data (voxels). I want to write this to a file that can be later read by Paraview (and, possibly, other analysis/visualisation programs). ...
2
votes
1answer
105 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.
2
votes
2answers
480 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 ...
1
vote
1answer
142 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?
1
vote
3answers
153 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 ...
0
votes
1answer
22 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 ...
0
votes
0answers
82 views
Need Help about HFSS Transient
This question might be very basic. I'm doing PhD in computational electromagnetics. Can anyone give me the theory behind HFSS Transient? I need to know what equation they are solving. This is ...
0
votes
2answers
68 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