As far as I known, there are are numpy and scipy for python.
Are there similar libs for F#?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are good commercial math libraries in .Net (you can use google to find them).
For free ones, Math.Net is the best available. However, its development has been paused for a long time.
Anyway, the .Net libraries usually have C# friendly interface. You need to do a wrapper in F# to use them conveniently.
I use F# Math Providers, which is a PInovke wrapper to LAPACK. You can use either the free netlib lapack implementation or INTEL MKL. The inner part of this wrapper is analyzed here.
For more reference, I have written an F# matrix series in my blog.