Source code checked in, #147c7bf04fffb362357e7dc9e5b0f22d7d1371c8
Special Functions: migrating usage of obsolete functions
View ArticleNew Post: Example of Usage in PowerShell 2.0
Thanks for sharing, I published a PowerShell module that does that with a little bit of syntactic tricks to make using Math.Net with PowerShell easier, please feel free to check it out, your feedback...
View ArticleNew Post: help with porting code from Math.NET Iridium to Math.NET Numerics
hi, I am a developer and need to port some code from Math.NET Iridium to Math.NET Numerics. I have some knowledge of maths, but have not really used it for some time. Perhaps someone could have a look...
View ArticleNew Post: help with porting code from Math.NET Iridium to Math.NET Numerics
Hi Sean Looks quite good already. The original code specified MATLAB conventions. Assuming you want the same behavior, you should declare that in Math.NET Numerics as well. Both FourierForward and...
View ArticleNew Post: help with porting code from Math.NET Iridium to Math.NET Numerics
thank you Christoph, this is very helpful. regarding Complex64 - yes sorry I was looking at the name of the file Complex64.cs :)
View ArticleNew Post: Iterative solver experience numerical break down
Hello all, Following advice on other threads, I am using iterative methods in order to solve a sparse system of equations. The matrix is 40000X40000. If I set the iteration limit to 10000 then I am...
View ArticleNew Post: Missing method exception on DenseMatrix.OfArray(Single[,])
Hi, I am using Math.NET Numerics in a Xamarin.iOS project using Xamarin Studio on a Mac. I am new to C# so this might be something obvious to veterans here. I am porting a Java project that used JAMA....
View ArticleNew Post: Missing method exception on DenseMatrix.OfArray(Single[,])
Hi, Apparently this can happen when using a compiled library, built against the full .Net4 profile in .Net or Mono, within an application targeting MonoTouch/Xamarin.iOS. It seems Xamarin.iOS still...
View ArticleNew Post: Missing method exception on DenseMatrix.OfArray(Single[,])
Thanks for your reply. Earlier I was using the one for net4. When I swap out the dll to reference the portable version, I get compiler...
View ArticleNew Post: Iterative solver experience numerical break down
Can you save the matrix + rhs and upload a zipped version? Use the MathNet.Numerics.LinearAlgebra.Double.IO namespace or the following code (assuming it's a real valued matrix)publicvoid...
View ArticleNew Post: Excel slope function (continued)
HI Guys, just wanted to check in to see if this has been implemented.Thank you kindlyYou guys Rock!Jorge
View ArticleNew Post: Excel slope function (continued)
It has indeed, but just a couple weeks ago and will be part of the next release, v2.6 (current release is v2.5). You can get pre-release binaries here if needed (see artifacts column). In v2.6 you can...
View ArticleSource code checked in, #8b2a1b7811cdcef90e1914b23e78316cbadbe851
Update release notes and contributors
View ArticleNew Post: help with porting code from Math.NET Iridium to Math.NET Numerics
hi Christoph I finally got on to coding this task :) There is 1 more case:4a) old code:points = new List<double> { start.XValue, middle.XValue, end.XValue }; values = new List<double> {...
View ArticleNew Post: help with porting code from Math.NET Iridium to Math.NET Numerics
hi just in case this helps anyone: if I take the old unit test from Math.NET Iridium: file: InterpolationTest.cs test: TestInterpolationMethod_NevillePolynomial code:...
View ArticleNew Post: What Complex8 or Complex16 or Complex?
I am working on a project measuring spectrum usage. We are using the USRP N200 hardware for gathering the data. The data is in "time domain" and we need to get it to "frequency domain" through a Fast...
View ArticleNew Post: What Complex8 or Complex16 or Complex?
Of course, I meant the title to be, "What ABOUT..." if an admin has the rights to change it...
View ArticleNew Comment on "Documentation"
Hey guys - you are awesome! this package, initiative is a life saver. Thanks to all who have contributed.
View ArticleNew Post: What Complex8 or Complex16 or Complex?
Hi There are quite a few reasons why it is implemented the way it is: We actually don't provide the Complex type ourselves but use the one provided in the .NET Framework in System.Numerics. We only...
View Article