Source code checked in, #5189e49fbd548b6754ce4c1d1bfbeeefdf6a4034
Control: update obsolete attributes
View ArticleCommented Issue: Percentile Failing [5727]
I am getting an Index was out of range error when I try and call Percentile.Compute.Here is my code :```IEnumerable<double> values =new[]{1.1, 2.2, 3.3, 4.4};Percentile p = new...
View ArticleClosed Issue: (minor) Documentation fix [5724]
Hi,On http://numerics.mathdotnet.com/api/MathNet.Numerics.Integration/Integrate.htm , the method descriptions (both) say :Approximation of the definite interval of an analytic smooth function on a...
View ArticleClosed Issue: Percentile Failing [5727]
I am getting an Index was out of range error when I try and call Percentile.Compute.Here is my code :```IEnumerable<double> values =new[]{1.1, 2.2, 3.3, 4.4};Percentile p = new...
View ArticleClosed Issue: Interpolation data limits? [5725]
I'm using the following method:IInterpolation ii = MathNet.Numerics.Interpolation.Interpolate.RationalWithoutPoles(points, values);It seems to work when I'm passing in lists that are less than about...
View ArticleClosed Issue: True computation of online statistics [5686]
Great thank you,In my project I used these references: maybe they will...
View ArticleClosed Issue: Percentile class bug [5702]
In the Percentile class compute Method has bug :/// <summary>/// Computes the percentile./// </summary>/// <param name="percentile">The percentile, must be between 0.0 and 1.0...
View ArticleCreated Unassigned: get_One for Complex and Complex32 [5728]
I'm not sure if it's proper issue but in Visual F#, the usual pown function (with integer argument) requires its first argument to have get_One. Complex and Complex32 type have one instead of get_One...
View ArticleCommented Unassigned: get_One for Complex and Complex32 [5728]
I'm not sure if it's proper issue but in Visual F#, the usual pown function (with integer argument) requires its first argument to have get_One. Complex and Complex32 type have one instead of get_One...
View ArticleNew Post: trigonometric operators on a DenseMatrix
Hi, Is there a function that allows to perform trigonometric operations on a dense matrix? My matrices are very large, and I am not sure that using a for loop to operate on each individual element...
View ArticleNew Post: trigonometric operators on a DenseMatrix
I assume you want to apply them element-wise? Not yet, but we're about to add some functional combinators to the linear algebra types, like Map which would apply a provided function/lambda as argument...
View ArticleNew Post: trigonometric operators on a DenseMatrix
Thanks for the response. Yes. This would be very useful. No pressure, but how soon should this be implemented?
View ArticleNew Post: trigonometric operators on a DenseMatrix
There is a chance >50% it will make it into v2.5 which should be released within 2 weeks (originally planned last weekend). If not it will be v2.6.
View ArticleNew Post: trigonometric operators on a DenseMatrix
Brilliant! Looking forward to the release. Love the work done thus far. Cheers.
View ArticleNew Post: ReadMatrix(stream)
I'm trying to use ReadMatrix(stream) and keep getting a null object reference: string strData = "3 4 5 6"; byte[] data = Encoding.ASCII.GetBytes(strData); Stream dataStream = new MemoryStream(data, 0,...
View ArticleNew Post: ReadMatrix(stream)
Hi Where does ReadMatrix(stream) come from, i.e. what is the mat object? Could you add a stack trace of the exception, ideally with line numbers? Thanks, Christoph
View ArticleNew Post: ReadMatrix(stream)
oops, I left off a key line (which should precede the code shown above): DelimitedReader<Matrix<Double>, Double> mat = new DelimitedReader<Matrix<Double>, Double>();...
View ArticleNew Post: Noob Question: Solving a Matrix
So, I'm trying to "solve" a matrix. If I were doing this with a pencil and paper, it'd be Gauss Jordan. Basically, what I want is to take the matrix for variables w, x, y, and z as follows: 1 0 -2 0 2...
View Article