Tagged Questions
4
votes
1answer
208 views
Using a compiled function inside NIntegrate gives “CompiledFunction::cfsa” message
The following function is defined for Real input:
FFc = Compile[{{x, _Real}, {EF, _Real}},If[x > EF, 0., If[x == EF, 0.5, 1.]]]
FFc is now used in the ...
6
votes
1answer
270 views
Speeding up numerical Fourier Transform
I wrote this function NFourierTransform, which takes a function $f(k)$ and numerically calculates the fourier transform integral for discrete values of $k \in ...
2
votes
1answer
145 views
how to nest parallelized computations on a cluster?
I am lucky to have access to a computational cluster and I could submit my job to many-many cores. As I need to evaluate a numerical integral within a numerical integral, I would like to know if I can ...
0
votes
2answers
432 views
nested numerical integration: not valid limits?
I encountered an error when I was hoping for some Mathematica (8.0.4) magic sparing me to code up numerical integration, function approximation and root-finding myself. The broader context and the ...