About using F# to create a Matrix assembly usable from C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:20:28Z http://stackoverflow.com/feeds/question/271966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/271966/about-using-f-to-create-a-matrix-assembly-usable-from-c 2 About using F# to create a Matrix assembly usable from C# Benjol 2008-11-07T12:48:14Z 2008-11-10T06:30:00Z <p>There are no builtin matrix functions in C#, but there are in the F# powerpack.</p> <p>Rather than using a third party or open source C# library, I wonder about rolling my own in F#, and exposing the useful bits to C#. </p> <p>Wondered if anybody has already thought of this, or tried it, and whether it's a good idea.</p> <p>Should I expose it as a class, or a load of static functions?</p> <p>Or should I create a C# wrapper class, and have that call down to F#? Or have the F# use the C# class as input and output?</p> <p>Any thoughts?</p> <p>Answer thanks to <a href="http://stackoverflow.com/questions/271966/about-using-f-to-create-a-matrix-assembly-usable-from-c#272250">Hath</a> below: you can use the F# library directly in C# (operators as well!):</p> <pre><code>using System; using System.Text; using Microsoft.FSharp.Math; namespace CSharp { class Program { static void Main(string[] args) { double[,] x = { { 1.0, 2.0 }, { 4.0, 5.0 } }; double[,] y = { { 1.0, 2.0 }, { 7.0, 8.0 } }; Matrix&lt;double&gt; m1 = MatrixModule.of_array2(x); Matrix&lt;double&gt; m2 = MatrixModule.of_array2(y); var mp = m1 * m2; var output = mp.ToArray2(); Console.WriteLine(output.StringIt()); Console.ReadKey(); } } public static class Extensions { public static string StringIt(this double[,] array) { var sb = new StringBuilder(); for (int r = 0; r &lt; array.Length / array.Rank; r++) { for (int c = 0; c &lt; array.Rank; c++) { if (c &gt; 0) sb.Append("\t"); sb.Append(array[r, c].ToString()); } sb.AppendLine(); } return sb.ToString(); } } } </code></pre> http://stackoverflow.com/questions/271966/about-using-f-to-create-a-matrix-assembly-usable-from-c/272067#272067 0 Answer by BFree for About using F# to create a Matrix assembly usable from C# BFree 2008-11-07T13:35:43Z 2008-11-07T13:35:43Z <p>There are very good Matrix classes in the XNA Framework. I'd either reference that dll, or most likely use reflector and copy and paste the code into my own solution. I know it doesn't answer your question directly, but just another idea....</p> http://stackoverflow.com/questions/271966/about-using-f-to-create-a-matrix-assembly-usable-from-c/272250#272250 4 Answer by Hath for About using F# to create a Matrix assembly usable from C# Hath 2008-11-07T14:36:08Z 2008-11-07T14:36:08Z <p>can you not just reference the f# library you need in c# and use it directly?</p> <p>I've done a similar thing to reference the FSharp.Core.dll to get at the </p> <pre><code>Microsoft.FSharp.Math.BigInt class. </code></pre> <p>So you can probably just reference the FSharp.PowerPack.dll to get at the </p> <pre><code>Microsoft.FSharp.Math.Matrix&lt;A&gt; class </code></pre>