New Post: Getting C# examples to compile in VS2012
Thanks Cristoph, that indeed takes things a bit further. I now get following build error: error CS0012: The type 'System.Numerics.Complex' is defined in an assembly that is not referenced. You must add...
View ArticleCommented Unassigned: is gammaupperincomplete correct? [5732]
When using the following values...double a = 0;double x = 0.2247;double ans = MathNet.Numerics.SpecialFunctions.GammaUpperIncomplete(a, x);...I am getting an answer of infinity. This site:...
View ArticleClosed Unassigned: is gammaupperincomplete correct? [5732]
When using the following values...double a = 0;double x = 0.2247;double ans = MathNet.Numerics.SpecialFunctions.GammaUpperIncomplete(a, x);...I am getting an answer of infinity. This site:...
View ArticleUpdated Wiki: Home
Math.NET Numerics Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Covered...
View ArticleNew Post: Is anyone interested in Point2D & 3D, Vector2D & 3D and...
Hi Johan, Sorry for the delay and the confusion. I see that you have seen the new repository, let's coordinate there instead of here. Thanks, Christoph
View ArticleNew Post: Getting C# examples to compile in VS2012
I've just:created an empty project in VS 2012added the v3.0.2 NuGet package of Math.NET Numericscopied over the body of the Main function you pasted Added the "MathNet.Numerics.LinearAlgebra.Double"...
View ArticleCreated Unassigned: Report Issues at GitHub Instead [5733]
https://github.com/mathnet/mathnet-numerics/issues?state=openThanks!
View ArticleEdited Unassigned: Please report Issues at GitHub Instead [5733]
https://github.com/mathnet/mathnet-numerics/issues?state=openThanks!
View ArticleEdited Unassigned: Please report Issues at GitHub Instead [5733]
https://github.com/mathnet/mathnet-numerics/issuesThanks!
View ArticleNew Post: Getting C# examples to compile in VS2012
What was missing is a reference to System.Numerics which is apparently required, but not referenced by default (in my case / VS config) when I create a new project. System.Numerics is part of VS and...
View ArticleNew Post: Getting C# examples to compile in VS2012
Thanks for the update. Quick question - how did you add the reference to the Math.NET assemblies? When using NuGet the reference to System.Numerics is supposed to be added automatically on those...
View ArticleNew Post: Is MathNet.Numerics depends on System.Threading.dll?
I am using polynomial regression method from MathNet, and I got error message as follwing ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ System.Reflection.TargetInvocationException:...
View ArticleNew Post: Is MathNet.Numerics depends on System.Threading.dll?
Are you targeting .Net 3.5? Only the .Net 3.5 version is supposed to depend on that assembly of the TaskParallelLibrary NuGet package. We should make this explicit in the NuGet package with a...
View ArticleNew Post: Is MathNet.Numerics depends on System.Threading.dll?
Hi, Christoph Yes. The target framework is .Net 3.5. After I add the reference Task Parallel Library for .Net 3.5, problem solved. Thanks a lot!!! One more question :) Before I add MathNet.Numerics...
View ArticleNew Post: Getting C# examples to compile in VS2012
I included the reference in the project separately, as I normally do with other .dlls. Next time I will use the NuGet method.
View ArticleNew Post: Is MathNet.Numerics depends on System.Threading.dll?
Was the simple test project by chance targeting .Net 4? Polynomial regression is currently implemented with linear algebra routines, some of which are parallelized and thus cause the threading...
View ArticleNew Post: Is MathNet.Numerics depends on System.Threading.dll?
Again, you are right. The testing project targeting .Net 4. Seems TPL is required if target framework is .Net 3.5. Thanks for the answer! Best Regards, Liang
View ArticleNew Post: Compiler error calling MathNet Numerics DelimitedWriter.WriteFile
I'm trying to write a DenseMatrix object to a csv file using DelimitedWriter like so:DelimitedWriter.WriteFile(originalData, "written.csv", ","); A red line would appear saying that the type arguments...
View ArticleNew Post: Transpose a vector
Hello all, is it really not possible to transpose a vector? i mean A = new Vector A_transposed = A' shouldnt be a big problem? Or with other words this is needed really often, isnt it? regards, michael
View ArticleNew Post: Transpose a vector
It doesn't make sense in Math.NET Numerics. A vector here is neither a row-vector nor column-vector, unlike in Matlab. It is just closer to a c# single dimension array. If you need to distinguish, you...
View Article