Click or drag to resize

IntegerArray Class

Shared implementation of the integer array.
Inheritance Hierarchy
SystemObject
  FinMath.LinearAlgebraSharedDataInt32
    FinMath.DataStructuresIntegerArray

Namespace:  FinMath.DataStructures
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public class IntegerArray : SharedData<int>, 
	IList<int>, ICollection<int>, IEnumerable<int>, 
	IFormattable, IEnumerable, ICollection, IList

The IntegerArray type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyIsFixedSize
Returns true if and only if collection has fixed size.
Public propertyIsReadOnly
Returns true if and only if collection is read only.
Public propertyItem
Returns certain element of the array by its index.
Public propertyLength
Number of elements in the collection.
Top
Methods
  NameDescription
Public methodAdd(Int32)
Adds new element to IntegerArray.
Public methodAdd(Object)
Adds new element to IntegerArray.
Public methodClear
Drop all elements from IntegerArray.
Public methodClone
Supports cloning, which creates a new instance of a class with the same value as an existing instance.
Public methodContains(Int32)
Returns true if and only if there is element equal to value in IntegerArray.
Public methodContains(Object)
Returns true if and only if there is element equal to value in IntegerArray.
Public methodCopyTo(Array, Int32)
Copies the elements of the System.Collections.ICollection to an System.Array, starting at a particular System.Array index.
Public methodCopyTo(Int32, Int32)
Copy elements from collection to specified array starting with index.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through a collection.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf(Int32)
Returns smallest index of specified element in IntegerArray. If there is no such element in IntegerArray returns -1.
Public methodIndexOf(Object)
Returns smallest index of specified element in IntegerArray. If there is no such element in IntegerArray returns -1.
Public methodInsert(Int32, Int32)
Insert element on position. All elements starting from index to collection size will be shifted to the right.
Public methodInsert(Int32, Object)
Insert element on position. All elements starting from index to collection size will be shifted to the right.
Public methodStatic memberLoad
Loads IntegerArray from CSV file.
Public methodStatic memberRandom(Int32)
Creates the IntegerArray of given size which is random permutation of numbers from 0 to size - 1.
Public methodStatic memberRandom(Int32, DUDistribution)
Creates the IntegerArray of given size with elements that are sampled from the specified distribution.
Public methodStatic memberRandom(Int32, Int32)
Creates the IntegerArray of given size and fill it with uniform distributed non-negative integers less than specified value.
Public methodStatic memberRandom(Int32, Int32, Int32)
Creates the IntegerArray of given size and fill it with uniform distributed integer numbers from specified boundaries.
Public methodRemove(Int32)
Remove element with smallest index equal to specified. All element with indices greater than removed will be shifted left.
Public methodRemove(Object)
Remove element with smallest index equal to specified. All element with indices greater than removed will be shifted left.
Public methodRemoveAt
Remove element stored on position. All element with indices greater than removed will be shifted left.
Public methodResize
Resize container to specified size. New Length and internal capacity will be set to specified value. Missing values will be filled with zeros.
Public methodSave
Saves IntegerArray to CSV file.
Public methodSort
Sort elements of the collection.
Public methodToArray
Copy data from integer array to native c sharp array.
Public methodToString
Formats the value of the current instance using the specified format.
(Overrides ObjectToString.)
Public methodToString(String, IFormatProvider)
Formats the value of the current instance using the specified format.
Top
Operators
Extension Methods
  NameDescription
Public Extension MethodAbsoluteMaximumOverloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOverloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefault(Int32)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefaultInt32(FuncInt32, Double, Int32, Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefault(Int32)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOverloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOverloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefault(Int32)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefaultInt32(FuncInt32, Double, Int32, Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefault(Int32)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanOverloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanOrDefault(Double)Overloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodAutocorrelogram(Int32)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogram(Int32, Double)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogramInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogramInt32(Int32, Double, FuncInt32, Double, Boolean)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogramInt32(Int32, FuncInt32, Double, Boolean, Double)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodAutocorrelogramInt32(Int32, Double, FuncInt32, Double, Boolean, Double)Overloaded.
Builds autocorrelogram of specified size of container's values. Method will enumerate all lags between zero and specified one inclusively. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCenter
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCoefficientOfVariationOverloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationOrDefault(Double)Overloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCopyData(IListInt32)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyDataInt32(IListDouble, FuncInt32, Double, Boolean)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyDataInt32(IListDouble, FuncInt32, Double, Boolean, Double)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelation(IEnumerableInt32)Overloaded.
Returns correlation between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Correlation_and_dependence
(Defined by DescriptiveStatistics.)
Public Extension MethodCorrelationInt32(IEnumerableInt32, FuncInt32, Double, Boolean)Overloaded.
Returns correlation between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Correlation_and_dependence
(Defined by DescriptiveStatistics.)
Public Extension MethodCorrelationOrDefault(IEnumerableInt32, Double)Overloaded.
Returns correlation between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Correlation_and_dependence
(Defined by DescriptiveStatistics.)
Public Extension MethodCorrelationOrDefaultInt32(IEnumerableInt32, FuncInt32, Double, Double, Boolean)Overloaded.
Returns correlation between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Correlation_and_dependence
(Defined by DescriptiveStatistics.)
Public Extension MethodCorrelogram(IEnumerableInt32, Int32)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogram(IEnumerableInt32, Int32, Double)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogramInt32(IEnumerableInt32, Int32, FuncInt32, Double, Boolean)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogramInt32(IEnumerableInt32, Int32, Double, FuncInt32, Double, Boolean)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogramInt32(IEnumerableInt32, Int32, FuncInt32, Double, Boolean, Double)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelogramInt32(IEnumerableInt32, Int32, Double, FuncInt32, Double, Boolean, Double)Overloaded.
Builds correlogram between values from containers. Method will enum all lags between -lag and +lag. Be careful with result array size it must be at least lag * 2 + 1. The containers must have the same size. http://en.wikipedia.org/wiki/Correlogram
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCountOverloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefault(Int32)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefaultInt32(FuncInt32, Double, Int32, Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariance(IEnumerableInt32)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceInt32(IEnumerableInt32, FuncInt32, Double, Boolean)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceOrDefault(IEnumerableInt32, Double)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceOrDefaultInt32(IEnumerableInt32, FuncInt32, Double, Double, Boolean)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariancePopulation(IEnumerableInt32)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariancePopulationInt32(IEnumerableInt32, FuncInt32, Double, Boolean)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariancePopulationOrDefault(IEnumerableInt32, Double)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariancePopulationOrDefaultInt32(IEnumerableInt32, FuncInt32, Double, Double, Boolean)Overloaded.
Returns population covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceSample(IEnumerableInt32)Overloaded.
Returns sample covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceSampleInt32(IEnumerableInt32, FuncInt32, Double, Boolean)Overloaded.
Returns sample covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceSampleOrDefault(IEnumerableInt32, Double)Overloaded.
Returns sample covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCovarianceSampleOrDefaultInt32(IEnumerableInt32, FuncInt32, Double, Double, Boolean)Overloaded.
Returns sample covariance between values in containers. The containers must have the same size. http://en.wikipedia.org/wiki/Covariance
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistribution(Int32)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionInt32(Double, FuncInt32, Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefault(Int32, Double)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefaultInt32(Double, FuncInt32, Double, Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodEnsureBoundaries
Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureLeftBoundary
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureRightBoundary
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodFirstRawMomentOverloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentOrDefault(Double)Overloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentOverloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentOrDefault(Double)Overloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentOverloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentOrDefault(Double)Overloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanOverloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanOrDefault(Double)Overloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom(Int32)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom(Int32)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomInt32(Int32, DescriptiveStatisticsBaseGetRankDelegateInt32)Overloaded.
Returns given amount of objects with biggest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetBottomInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices(Int32)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices(Int32, Int32)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndicesInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndicesInt32(Int32, Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetCenteredOverloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(IListDouble)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredInt32(FuncInt32, Double, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredInt32(IListDouble, FuncInt32, Double, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredInt32(FuncInt32, Double, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredInt32(IListDouble, FuncInt32, Double, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries(Int32, Int32)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries(Int32, Int32, IListDouble)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundariesInt32(Double, Double, FuncInt32, Double, Boolean)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundariesInt32(Double, Double, IListDouble, FuncInt32, Double, Boolean)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundariesInt32(Double, Double, FuncInt32, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundariesInt32(Double, Double, IListDouble, FuncInt32, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Int32)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Int32, IListDouble)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryInt32(Double, FuncInt32, Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryInt32(Double, IListDouble, FuncInt32, Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryInt32(Double, FuncInt32, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryInt32(Double, IListDouble, FuncInt32, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Int32)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Int32, IListDouble)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryInt32(Double, FuncInt32, Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryInt32(Double, IListDouble, FuncInt32, Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryInt32(Double, FuncInt32, Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryInt32(Double, IListDouble, FuncInt32, Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardizedOverloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized(IListDouble)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardizedInt32(FuncInt32, Double, Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardizedInt32(IListDouble, FuncInt32, Double, Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardizedInt32(FuncInt32, Double, Boolean, Double)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardizedInt32(IListDouble, FuncInt32, Double, Boolean, Double)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetTop(Int32)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTop(Int32)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopInt32(Int32, DescriptiveStatisticsBaseGetRankDelegateInt32)Overloaded.
Returns given amount of objects with smallest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetTopInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices(Int32)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices(Int32, Int32)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndicesInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndicesInt32(Int32, Int32, FuncInt32, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanOverloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanOrDefault(Double)Overloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOverloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOrDefault(Double)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodLargest(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest(IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(IListInt32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32(Int32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32, TResult(Int32, FuncInt32, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32, TResult(IListInt32, FuncInt32, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestInt32, TResult(Int32, FuncInt32, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices(Int32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices(IListInt32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Decimal, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, Decimal, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Int32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, Int32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Int64, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, Int64, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableDecimal, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, NullableDecimal, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, NullableInt32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableInt64, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, NullableInt64, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Double, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, Double, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, Single, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, Single, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableDouble, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, NullableDouble, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(Int32, FuncInt32, NullableSingle, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32(IListInt32, FuncInt32, NullableSingle, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32, TResult(Int32, FuncInt32, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32, TResult(Int32, FuncInt32, TResult, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesInt32, TResult(IListInt32, FuncInt32, TResult, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodMaximumOverloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOverloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefault(Int32)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefaultInt32(FuncInt32, Double, Int32, Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefault(Int32)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOverloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOrDefault(Double)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOverloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefault(Double)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOverloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOrDefault(Double)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOverloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOverloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefault(Int32)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefaultInt32(FuncInt32, Double, Int32, Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOverloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefault(DescriptiveStatisticsMinimumMaximumValuesInt32)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefaultInt32(FuncInt32, Double, DescriptiveStatisticsMinimumMaximumValuesDouble, Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefault(Int32)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatistic(Int32)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticOrDefault(Int32, Double)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticOrDefaultInt32(Int32, FuncInt32, Double, Double, Boolean)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanOverloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanOrDefault(Double)Overloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantile(Double)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileInt32(Double, FuncInt32, Double, Boolean)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileOrDefault(Double, Double)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileOrDefaultInt32(Double, FuncInt32, Double, Double, Boolean)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodRandomPermutateInt32(RandomGenerator)Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodRandomPermutateInt32(Int32, Int32, RandomGenerator)Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodSecondCentralMomentOverloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentOrDefault(Double)Overloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentOverloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentOrDefault(Double)Overloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOverloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefault(Double)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSmallest(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest(IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(IListInt32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32(Int32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32, TResult(Int32, FuncInt32, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32, TResult(IListInt32, FuncInt32, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestInt32, TResult(Int32, FuncInt32, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices(Int32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices(IListInt32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Decimal, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, Decimal, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Int32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, Int32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Int64, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, Int64, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableDecimal, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, NullableDecimal, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, NullableInt32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableInt64, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, NullableInt64, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Double, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, Double, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, Single, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, Single, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableDouble, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, NullableDouble, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(Int32, FuncInt32, NullableSingle, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32(IListInt32, FuncInt32, NullableSingle, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32, TResult(Int32, FuncInt32, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32, TResult(Int32, FuncInt32, TResult, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesInt32, TResult(IListInt32, FuncInt32, TResult, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodStandardDeviationOverloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationOrDefault(Double)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationOverloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationOrDefault(Double)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleOverloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleOrDefault(Double)Overloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardize
Standardizes the values in the given collection. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodSumOverloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOverloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefault(Double)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefault(Double)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOverloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefault(Double)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentOverloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentOrDefault(Double)Overloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentOverloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentOrDefault(Double)Overloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodToArrayOverloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArrayInt32(FuncInt32, Double, Boolean)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArrayInt32(FuncInt32, Double, Boolean, Double)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodVarianceOverloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceOrDefault(Double)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOverloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOrDefault(Double)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOverloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleInt32(FuncInt32, Double, Boolean)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOrDefault(Double)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOrDefaultInt32(FuncInt32, Double, Double, Boolean)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Top
See Also