up vote 6 down vote favorite
share [g+] share [fb]

I need to perform some basic OLS regression using F#. To do this I need some Linear Algebra functions, but I'm confused as to what's out there. I can't find any way to invert a matrix. There is some documentation for a library called Microsoft.FSharp.Math.LinearAlgebra, but I don't know if that exists anymore.

link|improve this question

55% accept rate
Depends what your element type is. Microsoft.FSharp.Math.Experimental.LinearAlgebra.Inverse only supports float, IIRC. – Jon Harrop Dec 5 '10 at 16:39
feedback

4 Answers

up vote 6 down vote accepted

If you add the FSharp Powerpack to your project (in .NET references), you can use various functionality of the matrix library

edit: you also need to add the experimental library Fsharp.Powerpack.MathProviders, then you can call as follows

open    Microsoft.FSharp.Math
let m = Matrix.create 10 10 1.2
let m2 = Experimental.LinearAlgebra.Inverse m
link|improve this answer
I can create a Matrix just fine, I can add them, multiply them and even transpose them, but I can't invert them. – Jonathan Beerhalter Mar 20 '09 at 21:36
The update should do the work – Can Erten Mar 20 '09 at 22:29
The code I had to use was Microsoft.FSharp.Math.Experimental.LinearAlgebra.Inverse(m) But that works, thank you so much. – Jonathan Beerhalter Mar 21 '09 at 18:54
feedback

FlyingFrog do a Numerics library which contains Matrix inversion amongst many other functions.

Not sure which is preferable, that or the (apparently deprecated) 'experimental' code from the PowerPack. I guess you could always keep the source code for the managed bit of the PowerPack version in a safe place, still available here:

C:\Program Files\FSharp-1.9.6.2\source\fsharp\FSharp.PowerPack\math\lapack\linear_algebra_managed.fs.
link|improve this answer
1  
If you're inverting huge floating point matrices then the experimental code from the old F# Power Pack will give better performance (if you can get it to work!). If you're doing small matrices or other types (e.g. exact inversion via arbitrary-precision rational arithmetic) then F# for Numerics is the way to go. – Jon Harrop Dec 5 '10 at 16:38
feedback

I don't know; in the 1.9.6 version of F# I don't see anything offhand, the docs are here

http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/namespaces.html

and there is Matrix stuff in the Microsoft.FSharp.Math namespace in the FSharp.Powerpack.dll, but I don't see 'invert' offhand, and I don't know about the 'LinearAlgebra' stuff (deprecated? web search suggests it disappeared a few releases back).

link|improve this answer
Goodness, if you don't know, what hope is there for the rest of us? :) The dll is in 1.9.6.2 CTP and nothing indicates that it is deprecated (except it's absence from the docs, I guess...) – Benjol Mar 23 '09 at 14:26
feedback

Have you checked out this. It might help.

link|improve this answer
Does dnAnalytics still exist? I can't get to their webpage anymore. – Jonathan Beerhalter Mar 20 '09 at 20:30
That would be a shame. I didn't try digging around for it and I appologize if this is a dead end. :( – Craig Mar 20 '09 at 22:36
It appears that codeplex was down for maintenance. dnAnalytics seems to be back today. – Jonathan Beerhalter Mar 21 '09 at 17:47
1  
dnAnalytics is being merged with Math.NET Iridium to make Math.NET Numerics: mathdotnet.com – Rick Minerich Sep 2 '09 at 14:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.