vote up 4 vote down star

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

flag

64% accept rate

4 Answers

vote up 5 vote down check

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|flag
I can create a Matrix just fine, I can add them, multiply them and even transpose them, but I can't invert them. – WindyCityEagle Mar 20 at 21:36
The update should do the work – Can Mar 20 at 22:29
The code I had to use was Microsoft.FSharp.Math.Experimental.LinearAlgebra.Inverse(m) But that works, thank you so much. – WindyCityEagle Mar 21 at 18:54
vote up 0 vote down

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|flag
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 at 14:26
vote up 0 vote down

Have you checked out this. It might help.

link|flag
Does dnAnalytics still exist? I can't get to their webpage anymore. – WindyCityEagle Mar 20 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 at 22:36
It appears that codeplex was down for maintenance. dnAnalytics seems to be back today. – WindyCityEagle Mar 21 at 17:47
dnAnalytics is being merged with Math.NET Iridium to make Math.NET Numerics: mathdotnet.com – Rick Minerich Sep 2 at 14:13
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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