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.
|
|
|
|
|
|
|
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
|
||||||
|
|
|
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). |
||
|
|
|
Have you checked out this. It might help. |
||||||||
|
|
|
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:
|
||
|
|
