Christoph Ruegg
f2e0ad6f10
Tests: test category attributes
13 years ago
Christoph Ruegg
9c93ef8328
Tests: always seed RNGs
13 years ago
Christoph Ruegg
865d83ba2d
Build: .Net 3.5 tests now compiled against .Net 3.5 (instead of .Net 4.5)
13 years ago
Christoph Ruegg
4e031e7a91
Statistics: drop redundant explicit null checks
13 years ago
Christoph Ruegg
afc4f7e167
Precision: rework/cleanup (major)
13 years ago
Christoph Ruegg
09cc6f7a13
Use existing constants where appropriate
13 years ago
Christoph Ruegg
e37498618b
Distributions: move files (ns sync), clean up
13 years ago
Christoph Ruegg
5cb6db878f
Statistics: single-pass MeanVariance method
13 years ago
Christoph Ruegg
6904c6c812
BUG: Fix bug in ArrayStatistics.Variance on arrays longer than 46341 entries #137
13 years ago
Christoph Ruegg
fc1d4a4715
Distributions: ctor overloads that accept Random argument
13 years ago
Christoph Ruegg
01b54a5168
Drop obsolete code
13 years ago
Christoph Ruegg
132d4d4465
Statistics: Covariance
13 years ago
Iain McDonald
3af161b168
Add Spearman Rank Correlation Coefficient
More more info see
https://en.wikipedia.org/wiki/Spearman_rank_correlation
14 years ago
Christoph Ruegg
7b73cc34ef
Tests: mark percentile tests covering obsolete code as obsolete
14 years ago
Christoph Ruegg
17937ea88d
Statistics: mark Percentile class as obsolete
14 years ago
Christoph Ruegg
b0d8195af0
Statistics: Func-variants of quantile, icdf, percentile, orderstat
14 years ago
Christoph Ruegg
6647d007ab
Statistics: Proper Quantile statistics (supporting all 9 R-types and custom)
14 years ago
Christoph Ruegg
77ace8c7ec
Statistics: Array and Streaming Sample and Population StandardDeviation
14 years ago
Christoph Ruegg
3d039413b9
Statistics: Array and Streaming PopulationVariance
14 years ago
Christoph Ruegg
15a56daaf2
Statistics: Array and Streaming Variance
14 years ago
Christoph Ruegg
e1cf1cc7e6
Statistics: mean of empty set should be NaN
14 years ago
Christoph Ruegg
7f839739fd
Statistics: Streaming Mean
14 years ago
Christoph Ruegg
ef85446824
Statistics: extending tests and cosmetics
14 years ago
Christoph Ruegg
8fb1d36f73
Statistics: never throw on empty data (instead use NaN)
14 years ago
Christoph Ruegg
505625c172
Statistics: introduce StreamingStatistics, always throw on null data
14 years ago
Christoph Ruegg
669005b509
Statistics: sample/unibiased variance of empty set should be NaN #101
14 years ago
Christoph Ruegg
6861de3057
Statistics: introduce unsorted ArrayStatistics
14 years ago
Christoph Ruegg
3c4d20f30c
Statistics: cosmetics
14 years ago
IUser
20de4b1702
Percentile: Bug fixes and compliance with Excel.
High boundary check was against 100, should be 1.0.
Close to 0 or 1 percentile values for Nist and Interpolation methods
caused array out of bounds exceptions.
Seemingly arbitrary small dataset restriction removed.
Out of range percentile values and empty dataset returns double.NaN
instead of throwing, similar to Excel returning #NUM! in such cases.
14 years ago
Christoph Ruegg
1dc85bf6fb
MCMC: Minor namespace/naming/doc fixes
14 years ago
tibel
c137343596
Lazy load DescriptiveStatistics.Median
14 years ago
Artyom Baranovskiy
7dd31a162d
Implement test case for DescriptiveStatistics which proves
that it computes kurtosis incorrectly for large samples
14 years ago
Artyom Baranovskiy
7d546cec00
Fix parse double exception which occures if you try to run tests in
environment with Non-English default locale
14 years ago
manyue
40b28de379
Implementation of Hybrid Monte Carlo #37
14 years ago
manyue
483cd7638f
Implementation of Hybrid Monte Carlo method.
14 years ago
manyue
7447ddbab7
Implementation of Hybrid Monte Carlo method
14 years ago
manyue
051e9e47f4
Implementation of Hybrid Monte Carlo and tests.
14 years ago
Christoph Ruegg
386fb36bfc
Solution: Replace Silverlight with Portable library
Instead of a specific Silverlight version, we now provide a separate
Portable Library assebly that supports .Net 4.0.1 and higher,
Silverlight 5 ad well as .Net for Metro style apps (WinRT).
New NuGet Package MathNet.Numerics.Portable with the portable library.
Since MathNet.Numerics.Portable now supports silverlight, the normal
package MathNet.Numerics no longer supports it (.Net 4 only).
Reworked the common parallel execution infrastructure for more reasonable
abstractions and better compatibility with portable libraries. Portable
libraries do support parts of the TPL, but neither the Parallel class nor
straight threading.
15 years ago
Abratiychuk
3f470bc0bc
Fixed unit tests for Silverlight
Signed-off-by: abratiychuk <18.05.2011>
16 years ago
Christoph Ruegg
2b84d8dd5c
fixed order statistics/median bug #5667 that caused a potential stackoverflow on platforms where tail-recursion is not optimized. Fixed by turning the recursion into a loop manually. Unit tests.
16 years ago
Marcus Cuda
7a1a0fc8f1
tests: added Andriy's ported NUnit tests and tweaked them for the solver changes
16 years ago
Marcus Cuda
efbb270556
stats: added Percentile class and missing complex MatlabWriter tests
16 years ago
Marcus Cuda
84762f7109
merged andriy's XOR RNG
16 years ago
Christoph Ruegg
7c21d36316
Unit Tests: updated headers, minor clean up
17 years ago
Marcus Cuda
65ac0273f9
modified the thread queue to use wait/pulse instead of semaphores
17 years ago
Jurgen Van Gael
a2610c7931
Fixed bugs after running the Sample unit tests.
Fixed some spelling mistakes.
Changed the Histogram implementation to make lowerbound exclusive and upper bound inclusive. [http://mathnetnumerics.codeplex.com/Thread/View.aspx?ThreadId=75115 ]
Changed the Histogram implementation so that returned buckets are copies (so that users can't start messing with upper and lower bounds).
Signed-off-by: jvangael <jurgen.vangael@gmail.com>
17 years ago
Jurgen Van Gael
3ad1c2a207
Ported dnAnalytics Markov Chain Monte Carlo algorithms.
Signed-off-by: jvangael <jurgen.vangael@gmail.com>
17 years ago
Jurgen Van Gael
8b73646e78
Added Histogram example in F#.
Removed AlmostZero from incomplete Gamma function.
Ported Pearson correlation computation.
Added more histogram unit tests.
Fixed a bug in the histogram code.
Signed-off-by: jvangael <jurgen.vangael@gmail.com>
Signed-off-by: jvangael <jurgen.vangael@gmail.com>
17 years ago
Jurgen Van Gael
497938a20e
Added F# Apply example
Added F# DenseVector implementation
Added the Histogram class
Signed-off-by: jvangael <jurgen.vangael@gmail.com>
17 years ago
Marcus Cuda
4ccfa45871
Project merging: renamed projects
Signed-off-by: Marcus Cuda <marcus@cuda.net>
17 years ago