Analysis.EDM |
Analysis.KPCA |
Analysis.LDA |
Analysis.PCA |
Analysis.PLS |
Name | Description |
---|---|
RunningStatistics | This class keeps track of the mean and variance of a stream of numbers. It keeps "running" tallies of these quantities, so its memory consumption does not increase as more values are added. This implementation is a c# port of the c++ code presented at http://www.johndcook.com/standard_deviation.html |
TOFAccumulator | This class takes the average of a number of TOF curves. It keeps track of the mean and standard error for each point on the TOF. It keeps a running average and variance, so adding a TOF does not increase the memory usage. |