active questions tagged numerical - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T18:02:51Z http://stackoverflow.com/feeds/tag/numerical http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1907709/a-simple-wrapper-for-f-to-do-matrix-operations 1 A Simple Wrapper for F# to do matrix operations Yin Zhu 2009-12-15T14:08:47Z 2009-12-15T14:26:06Z <p>Hi there!</p> <p>This is a relatively long post. F# has a <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Math.type%5FMatrix-1.html" rel="nofollow">matrix</a> and <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Math.type%5FVector-1.html" rel="nofollow">vector</a> type(in PowerPack not in the Core) now. This is great! Even Python's numerical computing ability is from the third part. </p> <p>But the functions provided there is limited to the matrix and vector arithmetic, so to do inversion, decompositions etc. we still need to use another library. I am now using the latest <a href="http://www.codeplex.com/dnAnalytics" rel="nofollow">dnAnalytics</a>, which is merging into Math.Net project. But Math.Net project has no updates to the public for more than a whole year now, I don't know if they have a plan to continue. </p> <p>I did the following wrapper, this wrapper uses Matlab-like functions to do simple linear algebra. As I am new to F# and FP, would you please give some advices to improve the wrapper and code? Thanks!</p> <pre><code>#r @"D:\WORK\tools\dnAnalytics_windows_x86\bin\dnAnalytics.dll" #r @"FSharp.PowerPack.dll" open dnAnalytics.LinearAlgebra open Microsoft.FSharp.Math open dnAnalytics.LinearAlgebra.Decomposition // F# matrix -&gt; ndAnalytics DenseMatrix let mat2dnmat (mat:matrix) = let m = new DenseMatrix(mat.ToArray2D()) m // ndAnalytics DenseMatrix -&gt; F# matrix let dnmat2mat (dnmat:DenseMatrix) = let n = dnmat.Rows let m = dnmat.Columns let mat = Matrix.create n m 0. for i=0 to n-1 do for j=0 to m-1 do mat.[i,j] &lt;- dnmat.Item(i,j) mat // random matrix let randmat n m = let r = new System.Random() let ranlist m = [ for i in 1..m do yield r.NextDouble() ] matrix ([1..n] |&gt; List.map (fun x-&gt; ranlist m)) // is square matrix let issqr (m:matrix) = let n, m = m.Dimensions n = m // is postive definite let ispd m = if not (issqr m) then false else let m1 = mat2dnmat m let qrsolver = dnAnalytics.LinearAlgebra.Decomposition.Cholesky(m1) qrsolver.IsPositiveDefinite() // determinant let det m = let m1 = mat2dnmat m let lusolver = dnAnalytics.LinearAlgebra.Decomposition.LU(m1) lusolver.Determinant () // is full rank let isfull m = let m1 = mat2dnmat m let qrsolver = dnAnalytics.LinearAlgebra.Decomposition.GramSchmidt(m1) qrsolver.IsFullRank() // rank let rank m = let m1 = mat2dnmat m let svdsolver = dnAnalytics.LinearAlgebra.Decomposition.Svd(m1, false) svdsolver.Rank() // inversion by lu let inv m = let m1 = mat2dnmat m let lusolver = dnAnalytics.LinearAlgebra.Decomposition.LU(m1) lusolver.Inverse() // lu let lu m = let m1 = mat2dnmat m let lusolver = dnAnalytics.LinearAlgebra.Decomposition.LU(m1) let l = dnmat2mat (DenseMatrix (lusolver.LowerFactor ())) let u = dnmat2mat (DenseMatrix (lusolver.UpperFactor ())) (l,u) // qr let qr m = let m1 = mat2dnmat m let qrsolver = dnAnalytics.LinearAlgebra.Decomposition.GramSchmidt(m1) let q = dnmat2mat (DenseMatrix (qrsolver.Q())) let r = dnmat2mat (DenseMatrix (qrsolver.R())) (q, r) // svd let svd m = let m1 = mat2dnmat m let svdsolver = dnAnalytics.LinearAlgebra.Decomposition.Svd(m1, true) let u = dnmat2mat (DenseMatrix (svdsolver.U())) let w = dnmat2mat (DenseMatrix (svdsolver.W())) let vt = dnmat2mat (DenseMatrix (svdsolver.VT())) (u, w, vt.Transpose) </code></pre> <p>and test code</p> <pre><code>(* todo: read matrix market format ref: http://math.nist.gov/MatrixMarket/formats.html *) let readmat (filename:string) = System.IO.File.ReadAllLines(filename) |&gt; Array.map (fun x-&gt; (x |&gt; String.split [' '] |&gt; List.toArray |&gt; Array.map float)) |&gt; matrix let timeit f str= let watch = new System.Diagnostics.Stopwatch() watch.Start() let res = f() watch.Stop() printfn "%s Needed %f ms" str watch.Elapsed.TotalMilliseconds res let test() = let testlu() = for i=1 to 10 do let a,b = lu (randmat 1000 1000) () () let testsvd() = for i=1 to 10 do let u,w,v = svd (randmat 300 300) () () let testdet() = for i=1 to 10 do let d = det (randmat 650 650) () () timeit testlu "lu" timeit testsvd "svd" timeit testdet "det" </code></pre> <p>I also compared with matlab</p> <pre><code>t = cputime; for i=1:10, [l,u] = lu(rand(1000,1000)); end; e = cputime-t t = cputime; for i=1:10, [u,w,vt] = svd(rand(300,300)); end; e = cputime-t t = cputime; for i=1:10, d = det(rand(650,650)); end; e = cputime-t </code></pre> <p>The timings (Duo Core 2.0GH, 2GB memory, Matlab 2009a)</p> <pre><code>f#: lu Needed 8875.941700 ms svd Needed 14469.102900 ms det Needed 2820.304600 ms matlab: lu 3.7752 svd 5.7408 det 1.2636 </code></pre> <p>matlab is about two times faster. This is reasonable, as a native <a href="http://www.r-project.org" rel="nofollow">R</a> also has <a href="http://mlg.eng.cam.ac.uk/dave/rmbenchmark.php" rel="nofollow">similar results</a>. </p> http://stackoverflow.com/questions/1893010/redistributing-application-with-nag-math-libraries-client-must-have-license 0 redistributing application with NAG math libraries- client must have license? peter karasev 2009-12-12T10:37:12Z 2009-12-13T21:21:58Z <p>Has anyone dealt with re-distributing an application that uses the Numerical Algorithms Group (NAG) Libraries? </p> <p>It seems like when I build an executable, it won't run unless I have an environment variable set for the license file- i.e. if I gave someone the code they would need a license and associated daemon as well.</p> <p>Is there no way around that? I was hoping I only need the license to link with it.</p> http://stackoverflow.com/questions/1891937/whats-the-difference-between-combinatorial-and-numerical-problems 0 What's the difference between combinatorial and numerical problems Julian 2009-12-12T01:48:04Z 2009-12-12T02:01:33Z <p>Could you please give at least two examples of each. Thanks.</p> http://stackoverflow.com/questions/1870736/scala-whats-the-best-way-to-do-numeric-operations-in-generic-classes 3 Scala: Whats the best way to do numeric operations in generic classes? Alex Black 2009-12-08T23:57:59Z 2009-12-09T16:30:28Z <p>In Scala, I'd like to be able to write generic classes which use operators like >, /, * etc, but I don't see how to constrain T such that this will work.</p> <p>I looked into constraining T with Ordered[T], but that doesn't seem to work since only RichXXX (e.g. RichInt) extend it, not Int etc. I also saw Numeric[T], is this only available in Scala 2.8?</p> <p>Here is a specific example:</p> <pre><code>class MaxOfList[T](list: List[T] ) { def max = { val seed: Option[T] = None list .map( t =&gt; Some(t)) // Get the max .foldLeft(seed)((i,m) =&gt; getMax(i,m) ) } private def getMax(x: Option[T], y: Option[T]) = { if ( x.isDefined &amp;&amp; y.isDefined ) if ( x &gt; y ) x else y else if ( x.isDefined ) x else y } } </code></pre> <p>This class won't compile, because there are many Ts which don't support > etc. </p> <p>Thoughts?</p> <p>For now I've used a MixIn trait to get around this:</p> <pre><code>/** Defines a trait that can get the max of two generic values */ trait MaxFunction[T] { def getMax(x:T, y:T): T } /** An implementation of MaxFunction for Int */ trait IntMaxFunction extends MaxFunction[Int] { def getMax(x: Int, y: Int) = x.max(y) } /** An implementation of MaxFunction for Double */ trait DoubleMaxFunction extends MaxFunction[Double] { def getMax(x: Double, y: Double) = x.max(y) } </code></pre> <p>Which if we alter the original class can be mixed in at instantiation time.</p> <p>P.S. Mitch, inspired by your re-write of getMax, here is another:</p> <pre><code> private def getMax(xOption: Option[T], yOption: Option[T]): Option[T] = (xOption,yOption) match { case (Some(x),Some(y)) =&gt; if ( x &gt; y ) xOption else yOption case (Some(x), _) =&gt; xOption case _ =&gt; yOption } </code></pre> http://stackoverflow.com/questions/1209574/has-arbitrary-precision-arithmetic-affected-numerical-analysis-software 1 Has arbitrary-precision arithmetic affected numerical analysis software? Liran Orevi 2009-07-30T21:42:38Z 2009-12-07T21:15:00Z <p>Has <a href="http://en.wikipedia.org/wiki/Arbitrary-precision%5Farithmetic" rel="nofollow">arbitrary-precision arithmetic</a> affected <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fnumerical%5Fanalysis%5Fsoftware" rel="nofollow">numerical analysis software</a>?</p> <p>I feel that most numerical analysis software keeps on using the same floats and doubles.</p> <p>If I'm right, I'd love to know the reason, as in my opinion there are some calculations that can benefit from the use of arbitrary-precision arithmetic, particularly when it is combined with the use of rational number representation, as been done on the <a href="http://gmplib.org/" rel="nofollow">GNU Multi-Precision Library</a>.</p> <p>If I'm wrong, examples would be nice. </p> http://stackoverflow.com/questions/49926/open-source-alternative-to-matlabs-fmincon-function 7 Open source alternative to matlab's fmincon function? dF 2008-09-08T15:19:59Z 2009-12-06T18:51:50Z <p>Does anyone know of an open-source alternative to Matlab's <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/optim/index.html?/access/helpdesk/help/toolbox/optim/ug/fmincon.html" rel="nofollow"><code>fmincon</code></a> function for constrained linear optimization? I'm rewriting a matlab program to use Python / <a href="http://numpy.scipy.org/" rel="nofollow">numpy</a> / <a href="http://www.scipy.org/" rel="nofollow">SciPy</a> and this is the only function I haven't found an equivalent to. A numpy-based solution would be ideal, but any language will do.</p> http://stackoverflow.com/questions/1831353/the-speed-of-net-in-numerical-computing 1 The speed of .NET in numerical computing Yin Zhu 2009-12-02T08:09:30Z 2009-12-02T11:23:09Z <p>In my experience, .net is 2 to 3 times slower than native code. (I implemented L-BFGS for multivariate optimization).</p> <p>I have traced the ads on stackoverflow to <a href="http://www.centerspace.net/products/" rel="nofollow">http://www.centerspace.net/products/</a></p> <p>the speed is really amazing, the speed is close to native code. How can they do that? They said that:</p> <p>Q. Is NMath "pure" .NET?</p> <p>A. The answer depends somewhat on your definition of "pure .NET". NMath is written in C#, plus a small Managed C++ layer. For better performance of basic linear algebra operations, however, NMath does rely on the native Intel Math Kernel Library (included with NMath). But there are no COM components, no DLLs--just .NET assemblies. Also, all memory allocated in the Managed C++ layer and used by native code is allocated from the managed heap. </p> <p>Can someone explain more to me?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1809381/break-on-nans-or-infs 0 Break on NaNs or infs static_rtti 2009-11-27T15:35:22Z 2009-11-28T11:35:14Z <p>Hello all,</p> <p>It is often hard to find the origin of a NaN, since it can happen at any step of a computation and propagate itself. So is it possible to make a C++ program halt when a computation returns NaN or inf? The best in my opinion would be to have a crash with a nice error message:</p> <pre><code>Foo: NaN encoutered at Foo.c:624 </code></pre> <p>Is something like this possible? Do you have a better solution? How do you debug NaN problems?</p> <p>EDIT: Precisions: I'm working with GCC under Linux.</p> http://stackoverflow.com/questions/1776409/strategies-for-debugging-numerical-stability-issues 2 Strategies for debugging numerical stability issues? caffeine.cc 2009-11-21T19:04:23Z 2009-11-21T19:42:38Z <p>Dear SO,</p> <p>I'm trying to write an implementation of Wilson's spectral density factorization algorithm [1] for Python. The algorithm iteratively factorizes a [QxQ] matrix function into its square root (it's sort of an extension of the Newton-Raphson square-root finder for spectral density matrices).</p> <p>The problem is that my implementation only converges for matrices of size 45x45 and smaller. So after 20 iterations, the summed squared difference between matrices is about 2.45e-13. However, if I make an input of size 46x46, it does not converge until the 100th or so iteration. For 47x47 or larger, the matrices never converge; the error fluctuates between 100 and 1000 for about 100 iterations, and then starts to grow very quickly.</p> <p>How would you go about trying to debug something like this? There doesn't appear to be any specific point at which it goes crazy, and the matrices are too large for me to actually attempt to do the calculation by hand. Does anyone have tips / tutorials / heuristics for find bizarre numerical bugs like this? </p> <p>I've never dealt with anything like this before but I'm hoping some of you have...</p> <p>Thanks, - Dan</p> <p>[1] G. T. Wilson. "The Factorization of Matricial Spectral Densities". SIAM J. Appl. Math (Vol 23, No. 4, Dec. 1972)</p> http://stackoverflow.com/questions/1728736/c-numerical-algorithm-to-generate-numbers-from-binomial-distribution 2 C#: Numerical algorithm to generate numbers from Binomial distribution KalEl 2009-11-13T11:43:53Z 2009-11-19T15:03:04Z <p>I need to generate random numbers from Binomial(n,p) distribution.</p> <p>A Binomial(n,p) random variable is sum of n uniform variables which take 1 with probability p. In pseudo code, <code>x=0; for(i=0; i&lt;n; ++i) x+=(rand()&lt;p?1:0); will generate a Binomial(n,p).</p> <p>I need to generate this for small as well as really large n, for example n = 10^6 and p=0.02. Is there any fast numerical algorithm to generate it?</p> <p>EDIT -</p> <p>Right now this is what I have as approximation (along with functions for exact Poisson and Normal distribution)-</p> <p></p> <pre><code> public long Binomial(long n, double p) { // As of now it is an approximation if (n &lt; 1000) { long result = 0; for (int i=0; i&lt;n; ++i) if (random.NextDouble() &lt; p) result++; return result; } if (n * p &lt; 10) return Poisson(n * p); else if (n * (1 - p) &lt; 10) return n - Poisson(n * p); else { long v = (long)(0.5 + nextNormal(n * p, Math.Sqrt(n * p * (1 - p)))); if (v &lt; 0) v = 0; else if (v &gt; n) v = n; return v; } } </code></pre> <p></code></p> http://stackoverflow.com/questions/1755000/passing-around-fixed-size-arrays-in-c 0 Passing around fixed-size arrays in C++? static_rtti 2009-11-18T10:21:12Z 2009-11-18T10:39:34Z <p>Basically I'd like to do something like that:</p> <pre><code>int[3] array_func() { return {1,1,1}; } int main(int argc,char * argv[]) { int[3] point=array_func(); } </code></pre> <p>But that doesn't seem legal in C++. I know I can use vectors, but since I know the size of the array is a constant, it seems like a loss of performance is likely to occur. I'd also like to avoid a <code>new</code> if I can, because allocating stuff on the stack is easier and also likely to improve performance.</p> <p>What's the solution here?</p> http://stackoverflow.com/questions/1698595/java-performance-in-numerical-algorithms 3 Java performance in numerical algorithms unknown (google) 2009-11-09T01:00:32Z 2009-11-09T17:52:37Z <p>hello again</p> <p>I am curious about performance of Java numerical algorithms, say for example matrix matrix double precision multiplication, using the latest JIT machines as compared for example to hand tuned SSE C++/assembler or Fortran counterparts.</p> <p>I have looked on the web but most of the results come from almost 10 years ago and I understand Java progressed quite a lot since then.</p> <p>If you have experience using Java for numerically intensive applications can you share your experience. Also how well does Java perform in kernels where the loops are relatively short and the memory access is not very uniform but still within the limits of L1 cache? If such kernel is executed multiple times in succession, can JVM optimize it during runtime?</p> <p>Thanks</p> http://stackoverflow.com/questions/501111/looking-for-ode-integrator-solver-with-a-relaxed-attitude-to-derivative-precision 0 Looking for ODE integrator/solver with a relaxed attitude to derivative precision timday 2009-02-01T16:41:07Z 2009-11-08T19:30:25Z <p>I have a system of (first order) ODEs with fairly expensive to compute derivatives.</p> <p>However, the derivatives can be computed considerably cheaper to within given error bounds, either because the derivatives are computed from a convergent series and bounds can be placed on the maximum contribution from dropped terms, or through use of precomputed range information stored in kd-tree/octree lookup tables.</p> <p>Unfortunately, I haven't been able to find any general ODE solvers which can benefit from this; they all seem to just give you coordinates and want an exact result back. (Mind you, I'm no expert on ODEs; I'm familiar with Runge-Kutta, the material in the Numerical Recipies book, LSODE and the Gnu Scientific Library's solver).</p> <p>ie for all the solvers I've seen, you provide a <code>derivs</code> callback function accepting a <code>t</code> and an array of <code>x</code>, and returning an array of <code>dx/dt</code> back; but ideally I'm looking for one which gives the callback <code>t</code>, <code>x</code>s, <em>and an array of acceptable errors</em>, and receives <code>dx/dt_min</code> and <code>dx/dt_max</code> arrays back, with the derivative range guaranteed to be within the required precision. (There are probably numerous equally useful variations possible).</p> <p>Any pointers to solvers which are designed with this sort of thing in mind, or alternative approaches to the problem (I can't believe I'm the first person wanting something like this) would be greatly appreciated.</p> http://stackoverflow.com/questions/1668899/fortran-32-bit-64-bit-performance-portability 0 Fortran: 32 bit / 64 bit performance portability thrope 2009-11-03T17:28:28Z 2009-11-03T19:01:47Z <p>I've been starting to use Fortran (95) for some numerical code (generating python modules). Here is a simple example:</p> <pre><code>subroutine bincount (x,c,n,m) implicit none integer, intent(in) :: n,m integer, dimension(0:n-1), intent(in) :: x integer, dimension(0:m-1), intent(out) :: c integer :: i c = 0 do i = 0, n-1 c(x(i)) = c(x(i)) + 1 end do end </code></pre> <p>I've found that this performs very well in 32 bit, but when compiled as x86_64 it is about 5x slower (macbook pro core2duo, snow leopard, gfortran 4.2.3 from r.research.att.com). I finally realised this might be due to using 32bit integer type instead of the native type, and indeed when I replace with integer*8, the 64 bit performance is only 25% worse than the 32bit one. </p> <p>Why is using a 32 bit integer so much slower on a 64 bit machine? Are there any implicit casts going on with the indexing that I might not be aware of?</p> <p>Is it always the case that 64 bit will be slower than 32 bit for this type of code (I was surprised at this) - or is there a chance I could get the 64 bit compiled version running the same speed or faster?</p> <p>(<strong>main question</strong>) Is there any way to declare a (integer) variable to be the 'native' type... ie 32 bit when compiled 32 bit, 64 bit when compiled 64 bit in modern fortran. Without this it seems like it is impossible to write portable fortran code that won't be much slower depending on how its compiled - and I think this means I will have to stop using fortran for my project. I have looked at kind and selected_kind but not been able to find anything that does this.</p> <p>[Edit: the large performance hit was from the f2py wrapper copying the array to cast it from 64 bit int to 32 bit int, so nothing inherent to the fortran.]</p> http://stackoverflow.com/questions/599619/how-to-do-numerical-integration-with-quantum-harmonic-oscillator-wavefunction 2 How to do numerical integration with quantum harmonic oscillator wavefunction? Jakub Narębski 2009-03-01T10:39:21Z 2009-10-14T14:40:31Z <p>How to do <strong>numerical integration</strong> (what numerical method, and what tricks to use) for one-dimensional integration over infinite range, where one or more functions in the integrand are <a href="http://en.wikipedia.org/wiki/Quantum%5Fharmonic%5Foscillator#One-dimensional%5Fharmonic%5Foscillator" rel="nofollow">1d quantum harmonic oscillator</a> wave functions. Among others I want to calculate matrix elements of some function in the harmonic oscillator basis:</p> <blockquote> <p>phi<sub>n</sub>(x) = N<sub>n</sub> H<sub>n</sub>(x) exp(-x<sup>2</sup>/2)<br /> <i>where H<sub>n</sub>(x) is <a href="http://en.wikipedia.org/wiki/Hermite%5Fpolynomials" rel="nofollow">Hermite polynomial</a></i></p> <p>V<sub>m,n</sub> = \int_{-infinity}^{infinity} phi<sub>m</sub>(x) V(x) phi<sub>n</sub>(x) dx</p> </blockquote> <p>Also in the case where there are quantum harmonic wavefunctions with different widths.</p> <p>The problem is that wavefunctions phi<sub>n</sub>(x) have oscillatory behaviour, which is a problem for large <em>n</em>, and algorithm like adaptive Gauss-Kronrod quadrature from GSL (GNU Scientific Library) take long to calculate, and have large errors.</p> http://stackoverflow.com/questions/1463632/how-to-use-tdd-correctly-to-implement-a-numerical-method 4 How to use TDD correctly to implement a numerical method? Jader Dias 2009-09-23T02:09:16Z 2009-10-12T02:27:37Z <p>I am trying to use Test Driven Development to implement my signal processing library. But I have a little doubt: Assume I am trying to implement a sine method (I'm not):</p> <ol> <li><p>Write the test (pseudo-code)</p> <pre><code>assertEqual(0, sine(0)) </code></pre></li> <li><p>Write the first implementation</p> <pre><code>function sine(radians) return 0 </code></pre></li> <li><p>Second test</p> <pre><code>assertEqual(1, sine(pi)) </code></pre></li> </ol> <p>At this point, should I:</p> <ol> <li>implement a smart code that will work for pi and other values, or</li> <li>implement the dumbest code that will work only for 0 and pi?</li> </ol> <p>If you choose the second option, when can I jump to the first option? I will have to do it eventually...</p> http://stackoverflow.com/questions/1375771/any-open-source-library-for-sparse-linear-algebra-in-opencl 3 Any open source library for sparse linear algebra in OpenCL? ogrisel 2009-09-03T20:31:04Z 2009-09-06T17:33:58Z <p>I am looking for some sparse linear algebra OpenCL kernels such as blas vector/vector operations and matrix / vector operations but with sparse data structures. Ideally that library would feature most of <a href="http://docs.scipy.org/doc/scipy/reference/sparse.html" rel="nofollow">scipy.sparse</a> but using OpenCL kernels instead of scalar C code wrapped in python ndarrays.</p> <p>After some googling I could not find anything relevant. So if you are currently kicking off a new opensource project or OpenCL-ising an existing linear algebra library please feel free to shoot a link.</p> http://stackoverflow.com/questions/350852/least-squares-c-library 5 Least Squares C# library Robert Wilkinson 2008-12-08T20:52:29Z 2009-08-21T19:55:38Z <p>I am looking to perform a polynomial least squares regression and am looking for a C# library to do the calculations for me. </p> <p>I pass in the data points and the degree of polynomal (2nd order, 3rd order, etc) and it returns either the C0, C1, C2 etc. constant values or the calculated values "predictions".</p> <p>Note: I am using Least Squares to create some forecasting reports for disk usage, database size and table size.</p> http://stackoverflow.com/questions/1217284/whats-the-smallest-non-zero-positive-floating-point-number-in-perl 1 What's the smallest non-zero, positive floating-point number in Perl? James Thompson 2009-08-01T19:20:46Z 2009-08-20T16:35:28Z <p>I have a program in Perl that works with probabilities that can occasionally be very small. Because of rounding error, sometimes one of the probabilities comes out to be zero. I'd like to do a check for the following:</p> <pre><code>use constant TINY_FLOAT =&gt; 1e-200; my $prob = calculate_prob(); if ( $prob == 0 ) { $prob = TINY_FLOAT; } </code></pre> <p>This works fine, but I actually see Perl producing numbers that are smaller than 1e-200 (I just saw a 8.14e-314 fly by). For my application I can change calculate_prob() so that it returns the maximum of TINY_FLOAT and the actual probability, but this made me curious about how floating point numbers are handled in Perl. </p> <p>What's the smallest positive floating-point value in Perl? Is it platform-dependent? If so, is there a quick program that I can use to figure it out on my machine? </p> http://stackoverflow.com/questions/1286870/ruby-implementation-isnumeric-for-strings-need-better-alternatives 1 Ruby implementation is_numeric? for Strings, need better alternatives Swanand 2009-08-17T08:54:39Z 2009-08-18T05:53:58Z <p>I wanted to validate 'numericality' of a string (its not an attribute in an active-record model). I just need it to be a valid base 10, positive integer string. I am doing this:</p> <pre><code>class String def numeric? # Check if every character is a digit !!self.match(/\A[0-9]+\Z/) end end class String def numeric? # Check is there is *any* non-numeric character !self.match(/[^0-9]/) end end </code></pre> <p>Which of these is a more plausible alternative? OR, is there any other better implementation?</p> http://stackoverflow.com/questions/1248706/accurate-evaluation-of-1-1-1-2-1-n-row 3 Accurate evaluation of 1/1 + 1/2 + ... 1/n row Constantius 2009-08-08T12:08:12Z 2009-08-08T16:39:55Z <p>I need to evaluate the sum of the row: 1/1+1/2+1/3+...+1/n. Considering that in C++ evaluations are not complete accurate, the order of summation plays important role. 1/n+1/(n-1)+...+1/2+1/1 expression gives the more accurate result. So I need to find out the order of summation, which provides the maximum accuracy. I don't even know where to begin. Preferred language of realization is C++. Sorry for my English, if there are any mistakes.</p> http://stackoverflow.com/questions/1141342/identifying-common-periodic-waveforms-square-sine-sawtooth 4 Identifying common periodic waveforms (square, sine, sawtooth, ...) endolith 2009-07-17T03:35:50Z 2009-08-01T20:34:43Z <p>Without any user interaction, how would a program identify what type of waveform is present in a recording from an ADC? </p> <p>For the sake of this question: triangle, square, sine, half-sine, or sawtooth waves of constant frequency. Level and frequency are arbitrary, and they will have noise, small amounts of distortion, and other imperfections.</p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Waveforms.svg/350px-Waveforms.svg.png" alt="Various waveforms" /></p> <p>I'll propose a few (naive) ideas, too, and you can vote them up or down.</p> http://stackoverflow.com/questions/1205490/why-do-these-division-equations-result-in-zero 1 Why do these division equations result in zero? Edward Tanguay 2009-07-30T09:30:11Z 2009-07-30T13:52:33Z <p>The result of all of the division equations in the below for loop is 0. How can I get it to give me a decimal e.g.:</p> <pre><code>297 / 315 = 0.30793650793650793650793650793651 </code></pre> <p>Code:</p> <pre><code>using System; namespace TestDivide { class Program { static void Main(string[] args) { for (int i = 0; i &lt;= 100; i++) { decimal result = i / 100; long result2 = i / 100; double result3 = i / 100; float result4 = i / 100; Console.WriteLine("{0}/{1}={2} ({3},{4},{5}, {6})", i, 100, i / 100, result, result2, result3, result4); } Console.ReadLine(); } } } </code></pre> <h1>Answer:</h1> <p>Thanks Jon and everyone, this is what I wanted to do:</p> <pre><code>using System; namespace TestDivide { class Program { static void Main(string[] args) { int maximum = 300; for (int i = 0; i &lt;= maximum; i++) { float percentage = (i / (float)maximum) * 100f; Console.WriteLine("on #{0}, {1:#}% finished.", i, percentage); } Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/540414/solving-nonlinear-equations-numerically 6 Solving nonlinear equations numerically Joonas Pulakka 2009-02-12T07:57:30Z 2009-07-25T08:21:18Z <p>Hello,</p> <p>I need to solve nonlinear minimization (least residual squares of N unknowns) problems in my Java program. The usual way to solve these is the <a href="http://en.wikipedia.org/wiki/Levenberg-Marquardt_algorithm" rel="nofollow">Levenberg-Marquardt</a> algorithm. I have a couple of questions</p> <ul> <li><p>Does anybody have experience on the different LM implementations available? There exist slightly different flavors of LM, and I've heard that the exact implementation of the algorithm has a major effect on the its numerical stability. My functions are pretty well-behaved so this will probably not be a problem, but of course I'd like to choose one of the better alternatives. Here are some alternatives I've found:</p> <ul> <li><p><a href="http://www1.fpl.fs.fed.us/optimization.html" rel="nofollow">FPL Statistics Group's Nonlinear Optimization Java Package</a>. This includes a Java translation of the classic Fortran MINPACK routines.</p></li> <li><p><a href="http://icl.cs.utk.edu/f2j/" rel="nofollow">JLAPACK</a>, another Fortran translation.</p></li> <li><p><a href="http://optalgtoolkit.sourceforge.net/" rel="nofollow">Optimization Algorithm Toolkit</a>.</p></li> <li><p><a href="http://scribblethink.org/Computer/Javanumeric/index.html" rel="nofollow">Javanumerics</a>.</p></li> <li><p>Some Python implementation. Pure Python would be fine, since it can be compiled to Java with jythonc.</p></li> </ul></li> <li><p>Are there any commonly used heuristics to do the initial guess that LM requires?</p></li> <li><p>In my application I need to set some constraints on the solution, but luckily they are simple: I just require that the solutions (in order to be physical solutions) are nonnegative. Slightly negative solutions are result of measurement inaccuracies in the data, and should obviously be zero. I was thinking to use "regular" LM but iterate so that if some of the unknowns becomes negative, I set it to zero and resolve the rest from that. Real mathematicians will probably laugh at me, but do you think that this could work?</p></li> </ul> <p>Thanks for any opinions!</p> <p><strong>Update</strong>: This is not rocket science, the number of parameters to solve (N) is at most 5 and the data sets are barely big enough to make solving possible, so I believe Java is quite efficient enough to solve this. And I believe that this problem has been solved numerous times by clever applied mathematicians, so I'm just looking for some ready solution rather than cooking my own. E.g. Scipy.optimize.minpack.leastsq would probably be fine if it was pure Python.. </p> http://stackoverflow.com/questions/422594/derivatives-in-c-c 7 Derivatives in C/C++? idontwanttortfm 2009-01-07T23:18:54Z 2009-07-22T07:41:26Z <p>I have some expressions such as x^2+y^2 that I'd like to use for some math calculations. On of the things I'd like to do is to take partial derivatives of the expressions. So if f(x,y) = x^2 + y^2 then the partial of f with respect to x would be 2x, the partial with respect to y would be 2y. I wrote a dinky function using a finite differences method but I'm running into lots of problems with floating point precision. For example, I end up with 1.99234 instead of 2. Are there any libraries that support symbolic differentiation? Any other suggestions?</p> http://stackoverflow.com/questions/1101530/are-there-any-net-graphics-calculate-libraries 1 Are there any .NET Graphics Calculate Libraries? Boolean 2009-07-09T02:24:41Z 2009-07-10T00:04:22Z <p>Sorry for my bad English.</p> <p>I want to find a Calculate Library not a Drawing Library to help me do some graphics calulation like Bezier's length, point on Beziers or other metadata.</p> <p>Is there any library like this?</p> http://stackoverflow.com/questions/1095517/qp-solver-for-java 1 QP solver for Java dmcer 2009-07-08T00:17:02Z 2009-07-08T00:28:27Z <p>I'm looking for a good easy to use Java based Quadratic Programming (QP) solver. </p> <p>Googling around I came across ojAlgo (<a href="http://ojalgo.org" rel="nofollow">http://ojalgo.org</a>). </p> <p>However, I was wondering if there are any other/better alternatives.</p> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package 7 What is the best Java numerical method package? Bob Cross 2008-09-17T19:08:47Z 2009-07-02T03:04:58Z <p>I am looking for a Java-based numerical method package that provides functionality including:</p> <ol> <li>Solving systems of equations using different numerical analysis algorithms.</li> <li>Matrix methods (e.g., inversion).</li> <li>Spline approximations.</li> <li>Probability distributions and statistical methods.</li> </ol> <p>In this case, "best" is defined as a package with a mature and usable API, solid performance and numerical accuracy.</p> <p>Edit: derick van brought up a good point in that cost is a factor. I am heavily biased in favor of free packages but others may have a different emphasis.</p> http://stackoverflow.com/questions/1072181/gcc-giving-different-numerical-results-with-o0-and-o2 2 GCC giving different numerical results with -O0 and -O2 Alex 2009-07-02T02:42:30Z 2009-07-02T03:01:47Z <p>I'm using 4.1.2. Does anyone have any ideas of the best places in my code to look? Experience with common causes? There are some ugly pointer casts (ie, d = (double) (* (float *) p), where p is pointer-to-int) that I'm working on eliminating, but no luck yet.<br /> For what it's worth, -O0 is giving the correct answer. Thanks for any help.</p> http://stackoverflow.com/questions/962362/accuracy-of-zheev-and-zheevd 0 Accuracy of ZHEEV and ZHEEVD quant_dev 2009-06-07T17:28:56Z 2009-06-26T23:31:12Z <p>I am using LAPACK to diagonalize complex Hermitian matrices. I can choose between ZHEEV and ZHEEVD. Which one of these routines is more accurate for matrices of the size 40 and a range of eigenvalues from 1E-2 to 1E1?</p>