Click or drag to resize

Vector Class

The class of vector.
Inheritance Hierarchy
SystemObject
  FinMath.LinearAlgebraSharedDataDouble
    FinMath.LinearAlgebraVector

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class Vector : SharedData<double>, 
	IEquatable<Vector>, IEnumerable<double>, IReadOnlyList<double>, 
	IReadOnlyCollection<double>, IList<double>, ICollection<double>, 
	IFormattable, IEnumerable, ICollection

The Vector type exposes the following members.

Constructors
  NameDescription
Public methodVector
Creates a Vector of zero size.
Public methodVector(IEnumerableDouble)
Creates a vector that contains elements copied from the specified collection.
Public methodVector(Double)
Creates a vector that contains elements copied from the array.
Public methodVector(Int32)
Creates a zero vector of the given size.
Public methodVector(Int32)
Creates a vector that contains elements copied from the integer array.
Public methodVector(Vector)
Creates a vector that contains elements copied from the other vector.
Public methodVector(Int32, Double)
Creates a vector of the given size and sets all its elements to the given value.
Top
Properties
  NameDescription
Public propertyCapacity
Gets and sets the capacity of this list. The capacity is the size of the internal array used to hold items. When set, the internal array of the list is reallocated to the given capacity.
Public propertyCount
Returns the number of elements in the vector.
Public propertyStatic memberDefaultGrowFactor
The array size grow factor new objects default value.
Public propertyStatic memberDefaultMinimalCapacity
The auto-shrinking minimal capacity new objects default value.
Public propertyStatic memberDefaultShrinkFactor
The array size shrinking factor new objects default value.
Public propertyGrowFactor
Public propertyIsReadOnly
Gets a value indicating whether the ICollectionT is read-only.
Public propertyIsSynchronized
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
Public propertyItem
Returns certain element of the vector by its index.
Public propertyMinimalCapacity
The auto-shrinking minimal capacity (for next shrinking prevention).
Public propertyShrinkFactor
Public propertySyncRoot
Gets an object that can be used to synchronize access to the ICollection.
Top
Methods
  NameDescription
Public methodAdd(Double)
Adds the given scalar to the vector and returns the result.
Public methodAdd(Vector)
Adds the given vector to this one and returns the result.
Public methodAdd(Double, Vector)
Adds the given scalar to the vector and writes the result to another one.
Public methodAdd(Vector, Vector)
Adds the given vector to this vector and writes the result to another one.
Public methodAddInPlace(Double)
Adds the given scalar to the vector.
Public methodAddInPlace(Vector)
Adds the given vector to this vector.
Public methodAddRange
Adds the elements of the specified collection to the end of the Vector.
Public methodAddScaledVector(Double, Vector)
Computes the sum of this vector and another vector multiplied by the given scalar and returns the result.
Public methodAddScaledVector(Double, Vector, Vector)
Computes the sum of this vector and another vector multiplied by the given scalar and writes the result into the given vector.
Public methodAddScaledVectorInPlace
Adds another vector multiplied by given scalar to this one.
Public methodAssign(Double)
Sets all elements of the vector to the given value. This is the same as SetValues() call.
Public methodAssign(Double)
Sets elements of this vector. This is the same as SetValues() call.
Public methodClear
Sets all elements of this vector to zero.
Public methodClone
Creates a copy of this Vector.
Public methodStatic memberConcatenate(Vector, Vector)
Concatenates two given vectors.
Public methodStatic memberConcatenate(Vector, Vector, Vector)
Concatenates two given vectors and writes the result to another one.
Public methodContains
Determines whether the ICollectionT contains a specific value.
Public methodCopyTo(Vector)
Copies the content of this vector to another.
Public methodCopyTo(Array, Int32)
Copies the elements of the ICollection to an Array, starting at a particular Array index.
Public methodCopyTo(Double, Int32)
Copies the elements of the ICollectionT to an Array, starting at a particular Array index.
Public methodCopyTo(Vector, Int32, Int32, Int32)
Copies part of this vector to another vector.
Public methodDelayedClone
Returns a mirror of this vector.
Public methodDivide(Double)
Divides this vector by the given scalar and returns the result.
Public methodDivide(Double, Vector)
Divides this vector by the given scalar and writes the result into another one.
Public methodDivideInPlace
Divides this vector by the given scalar.
Public methodDotProduct
Computes the dot product of this vector with itself.
Public methodDotProduct(Vector)
Computes the dot product of this vector with another.
Public methodStatic memberDotProduct(Vector, Vector)
Computes the dot product of two vectors.
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Overrides ObjectEquals(Object).)
Public methodEquals(Vector)
Indicates whether the current vector is equal to another.
Public methodGeneralMatrixVectorMultiply
Computes the matrix-vector product in general form. This method corresponds to the GEMV routine from BLAS Level 2. It multiplies this vector by scalar beta and adds product of matrix A and vector x scaled by scalar alpha
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Overrides ObjectGetHashCode.)
Public methodGetSubVector(Int32, Vector)
Gets values of the subvector of this vector.
Public methodGetSubVector(Int32, Int32)
Gets values of the subvector of this vector.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValues
Returns the array of values of this vector.
Public methodGetValues(Double)
Writes the elements of this vector to supplied array.
Public methodHasAbnormal
Checks whether the vector contains abnormal numbers: NaN, NegativeInfinity, or PositiveInfinity.
Public methodHasInfinity
Checks whether the vector contains NegativeInfinity or PositiveInfinity.
Public methodHasNaN
Checks whether the vector contains NaN.
Public methodHasNegativeInfinity
Checks whether the vector contains NegativeInfinity.
Public methodHasPositiveInfinity
Checks whether the vector contains PositiveInfinity.
Public methodIndexOf
Determines the index of a specific item in the IListT.
Public methodInfinityNorm
Computes the infinity norm of the vector.
Public methodInsert
Inserts an item to the IListT at the specified index.
Public methodInsertRange
Inserts the elements of a collection into the Vector at the specified index.
Public methodStatic memberKroneckerProduct
Computes the Kronecker product of two vectors. Considers input vectors as 1-column matrices and returns vector size N-by-M which contains kronecker product.
Public methodL1Norm
Computes the L1 norm (Taxicab norm, Manhattan norm) of the vector.
Public methodL2Norm
Computes the L2 norm (Euclidean norm) of the vector.
Public methodLeftSubtract(Double)
Subtracts this vector from the given scalar and returns the result.
Public methodLeftSubtract(Vector)
Subtracts this vector form the given one and returns the result.
Public methodLeftSubtract(Double, Vector)
Subtracts this vector from the given scalar and writes the result into another vector.
Public methodLeftSubtract(Vector, Vector)
Subtracts this vector form the given one and writes the result into another vector.
Public methodLeftSubtractInPlace(Double)
Subtracts this vector from the given scalar.
Public methodLeftSubtractInPlace(Vector)
Subtracts this vector from the given one.
Public methodStatic memberLoad
Loads Vector from CSV file.
Public methodMinus
Returns the negated copy of itself.
Public methodMinus(Vector)
Writes the negated copy of itself into another vector.
Public methodMinusInPlace
Negates this vector.
Public methodMultiply(Double)
Multiplies this vector by the given scalar and returns the result.
Public methodMultiply(Double, Vector)
Multiplies this vector by the given scalar and writes the result into another one.
Public methodMultiplyInPlace
Multiplies this vector by given scalar.
Public methodNegate
Negates all elements of this vector.
Public methodNorm
Compute the L1, L2 or infinity norm of the vector.
Public methodNormalize
Divides the each element of the vector onto the norm.
Public methodPermute
Permutes elements of the vector.
Public methodPlus
Returns the copy of this vector.
Public methodPlus(Vector)
Copies this vector into another one.
Public methodPlusInPlace
Does nothing.
Public methodPNorm
Computes the p-norm of the vector.
Public methodPointwiseAdd(Double)
Adds the given scalar to each element of the vector and returns the result.
Public methodPointwiseAdd(Vector)
Adds each element of the given vector to the corresponding element of this one and returns the result.
Public methodPointwiseAdd(Double, Vector)
Adds the given scalar to each element of the vector and stores result in another one.
Public methodPointwiseAdd(Vector, Vector)
Adds each element of the vector to the corresponding element of this one and stores the result in another vector.
Public methodPointwiseAddInPlace(Double)
Adds the given scalar to each element of the vector.
Public methodPointwiseAddInPlace(Vector)
Adds each element of the vector to corresponding element of this one.
Public methodPointwiseDivide(Double)
Divides each element of the vector by the given scalar and returns the result.
Public methodPointwiseDivide(Vector)
Divides each element of this vector by corresponding element of another one and returns the result.
Public methodPointwiseDivide(Double, Vector)
Divides each element of the vector by the given scalar and stores result in another one.
Public methodPointwiseDivide(Vector, Vector)
Divides each element of this vector by corresponding element of another one and stores the result in another vector.
Public methodPointwiseDivideInPlace(Double)
Divides each element of the vector by the given scalar.
Public methodPointwiseDivideInPlace(Vector)
Divides each element of this vector by corresponding element of another one.
Public methodPointwiseLeftDivide(Double)
Divides given scalar by each element of the vector and returns the result.
Public methodPointwiseLeftDivide(Vector)
Divides each element of another vector by the corresponding element of this one and returns the result.
Public methodPointwiseLeftDivide(Double, Vector)
Divides given scalar by each element of the vector and stores result in another one.
Public methodPointwiseLeftDivide(Vector, Vector)
Divides each element of another vector by the corresponding element of this one and stores the result in another vector.
Public methodPointwiseLeftDivideInPlace(Double)
Divides given scalar by each element of the vector.
Public methodPointwiseLeftDivideInPlace(Vector)
Divides each element of another vector by the corresponding element of this one.
Public methodPointwiseLeftSubtract(Double)
Subtracts the each element of the vector from the given scalar and returns the result.
Public methodPointwiseLeftSubtract(Vector)
Subtracts each element of this vector from the corresponding element of another one and returns the result.
Public methodPointwiseLeftSubtract(Double, Vector)
Subtracts the each element of the vector from the given scalar and stores result in another one.
Public methodPointwiseLeftSubtract(Vector, Vector)
Subtracts each element of this vector from the corresponding element of another one and stores the result in another vector.
Public methodPointwiseLeftSubtractInPlace(Double)
Subtracts the each element of the vector from the given scalar.
Public methodPointwiseLeftSubtractInPlace(Vector)
Subtracts each element of this vector from the corresponding element of another one.
Public methodPointwiseMultiply(Double)
Multiplies each element of the vector by the given scalar and returns the result.
Public methodPointwiseMultiply(Vector)
Multiplies each element of this vector by corresponding element of another one and returns the result.
Public methodPointwiseMultiply(Double, Vector)
Multiplies each element of the vector by the given scalar and stores result in another one.
Public methodPointwiseMultiply(Vector, Vector)
Multiplies each element of this vector by corresponding element of another one and stores result in another vector.
Public methodPointwiseMultiplyInPlace(Double)
Multiplies each element of the vector by the given scalar.
Public methodPointwiseMultiplyInPlace(Vector)
Multiplies each element of this vector by corresponding element of another one.
Public methodPointwiseSubtract(Double)
Subtracts the given scalar from each element of the vector and returns the result.
Public methodPointwiseSubtract(Vector)
Subtracts each element of the vector from the corresponding element of this one and returns the result.
Public methodPointwiseSubtract(Double, Vector)
Subtracts the given scalar from each element of the vector and stores result in another one.
Public methodPointwiseSubtract(Vector, Vector)
Subtracts each element of the vector from the corresponding element of this one and stores result in another vector.
Public methodPointwiseSubtractInPlace(Double)
Subtracts the given scalar from each element of the vector.
Public methodPointwiseSubtractInPlace(Vector)
Subtracts each element of the vector from the corresponding element of this one.
Public methodStatic memberRandom(Int32)
Creates the vector of given size with elements that are sampled from the continuous uniform [0;1] distribution.
Public methodStatic memberRandom(CVDistribution)
Creates the vector that is a sample of given mutlivariate distribution.
Public methodStatic memberRandom(Int32, CUDistribution)
Creates the vector of given size with elements that are sampled from the specified distribution.
Public methodStatic memberRandom(Int32, RandomGenerator)
Creates the vector of given size with elements uniformly distributed in [0; 1].
Public methodStatic memberRandom(Int32, Random)
Creates the vector of given size with elements uniformly distributed in [0; 1].
Public methodRemove
Removes the first occurrence of a specific object from the ICollectionT.
Public methodRemoveAll(Double)
Removes all elements that equals specified value. The Double.NaN values are also supported and compared via Double.IsNaN.
Public methodRemoveAll(PredicateDouble)
Removes all elements that match the conditions defined by the specified predicate.
Public methodRemoveAt
Removes the IListT item at the specified index.
Public methodRemoveRange
Removes a range of elements from the Vector.
Public methodSave
Saves Vector to CSV file.
Public methodSetSubVector
Sets values of the subvector of this vector.
Public methodSetValues(Double)
Sets all elements of the vector to the given value. This is the same as Assign() call.
Public methodSetValues(Double)
Sets elements of this vector. This is the same as Assign() call.
Public methodSubtract(Double)
Subtracts the given scalar to this vector and returns the result.
Public methodSubtract(Vector)
Subtracts the given vector from this one and returns the result.
Public methodSubtract(Double, Vector)
Subtracts the given scalar from this vector and writes the result to another one.
Public methodSubtract(Vector, Vector)
Subtracts the given vector from this vector and writes the result to another one.
Public methodSubtractInPlace(Double)
Subtracts the given scalar from this vector.
Public methodSubtractInPlace(Vector)
Subtracts the given vector from this vector.
Public methodTensorProduct
Computes the tensor product of this vector with itself.
Public methodTensorProduct(Matrix)
Computes the tensor product of this vector with itself and stores it in result matrix.
Public methodTensorProduct(Vector)
Computes the tensor product of current vector and specified vectors and store it in result matrix.
Public methodTensorProduct(Vector, Matrix)
Computes the tensor product of current vector and specified vectors and stores it in result matrix.
Public methodStatic memberTensorProduct(Vector, Vector)
Computes the tensor product of two given vectors.
Public methodStatic memberTensorProduct(Vector, Vector, Matrix)
Computes the tensor product of two given vectors.
Public methodToArray
Returns an array filled with elements of this vector.
Public methodToColumnMatrix
Returns the matrix representation of this vector as column vector.
Public methodToRowMatrix
Returns the matrix representation of this vector as row vector.
Public methodToString
Returns a String that represents the current Vector.
(Overrides ObjectToString.)
Public methodToString(IFormatProvider)
Formats the value of the current instance using the specified format.
Public methodToString(String)
Formats the value of the current instance using the specified format.
Public methodToString(String, IFormatProvider)
Formats the value of the current instance using the specified format.
Top
Operators
  NameDescription
Public operatorStatic memberAddition(Double, Vector)
Adds a scalar to each element of the vector and returns the result.
Public operatorStatic memberAddition(Vector, Vector)
Adds two vectors together and returns the result.
Public operatorStatic memberAddition(Vector, Double)
Adds a scalar to each element of the vector and returns the result.
Public operatorStatic memberDivision
Divides each element of the vector by given scalar and returns the result.
Public operatorStatic member(Double to Vector)
Casts the array of values to the vector. It doesn't copies the values, but saves the reference to the input array.
Public operatorStatic member(Vector to Double)
Casts the vector to an array of its values. It doesn't copies the values, but returns the reference to internal array.
Public operatorStatic memberMultiply(Double, Vector)
Multiplies the vector by given scalar and returns the result.
Public operatorStatic memberMultiply(Vector, Vector)
Computes the dot product of two given vectors.
Public operatorStatic memberMultiply(Vector, Double)
Multiplies the vector by given scalar and returns the result.
Public operatorStatic memberSubtraction(Double, Vector)
Subtracts each element of the vector from the scalar and returns the result.
Public operatorStatic memberSubtraction(Vector, Vector)
Subtracts the one vector from another and returns the result.
Public operatorStatic memberSubtraction(Vector, Double)
Subtracts the scalar from each element of the vector and returns the result.
Public operatorStatic memberUnaryNegation
Negates each element of the vector.
Public operatorStatic memberUnaryPlus
Returns a Vector containing the same values of right.
Top
Extension Methods
  NameDescription
Public Extension MethodAbsoluteMaximum(Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximum(Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndex(Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndex(Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumIndexOrDefaultDouble(FuncDouble, Double, Int32, Boolean)Overloaded.
Returns the index of the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefault(Double, Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefault(Double, Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMaximumOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the maximal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimum(Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimum(Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndex(Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndex(Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumIndexOrDefaultDouble(FuncDouble, Double, Int32, Boolean)Overloaded.
Returns the index of the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefault(Double, Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefault(Double, Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodAbsoluteMinimumOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the minimal absolute value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodArcCosOverloaded.
Computes arccosine of vector elements.
(Defined by VectorMath.)
Public Extension MethodArcCos(Vector)Overloaded.
Computes arccosine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodArcCoshOverloaded.
Computes hyperbolic arccosine of vector elements.
(Defined by VectorMath.)
Public Extension MethodArcCosh(Vector)Overloaded.
Computes hyperbolic arccosine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodArcCoshInPlace
Computes hyperbolic arccosine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodArcCosInPlace
Computes arccosine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodArcSinOverloaded.
Computes arcsine of vector elements.
(Defined by VectorMath.)
Public Extension MethodArcSin(Vector)Overloaded.
Computes arcsine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodArcSinhOverloaded.
Computes hyperbolic arcsine of vector elements.
(Defined by VectorMath.)
Public Extension MethodArcSinh(Vector)Overloaded.
Computes hyperbolic arcsine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodArcSinhInPlace
Computes hyperbolic arcsine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodArcSinInPlace
Computes arcsine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodArcTanOverloaded.
Computes arctangent of vector elements.
(Defined by VectorMath.)
Public Extension MethodArcTan(Vector)Overloaded.
Computes arctangent of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodArcTanhOverloaded.
Computes hyperbolic arctangent of vector elements.
(Defined by VectorMath.)
Public Extension MethodArcTanh(Vector)Overloaded.
Computes hyperbolic arctangent of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodArcTanhInPlace
Computes hyperbolic arctangent of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodArcTanInPlace
Computes arctangent of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodArithmeticMean(Boolean)Overloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMean(Boolean)Overloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the arithmetic mean of the container's values. http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodArithmeticMeanOrDefaultDouble(FuncDouble, 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, 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 MethodAutocorrelogram(Int32, 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 MethodAutocorrelogram(Int32, 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 MethodAutocorrelogram(Int32, 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 MethodAutocorrelogram(Int32, Vector, 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 MethodAutocorrelogram(Int32, 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 MethodAutocorrelogram(Int32, 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 MethodAutocorrelogram(Int32, Vector, 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 MethodAutocorrelogramDouble(Int32, FuncDouble, 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 MethodAutocorrelogramDouble(Int32, Double, FuncDouble, 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 MethodAutocorrelogramDouble(Int32, FuncDouble, 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 MethodAutocorrelogramDouble(Int32, Double, FuncDouble, 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 MethodCalculateMetric
Calculate metric.
(Defined by MetricsCalculator.)
Public Extension MethodCbrtOverloaded.
Computes cubic root of vector elements.
(Defined by VectorMath.)
Public Extension MethodCbrt(Vector)Overloaded.
Computes cubic root of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodCbrtInPlace
Computes cubic root of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodCeilingOverloaded.
Computes rounding-up of vector elements.
(Defined by VectorMath.)
Public Extension MethodCeiling(Vector)Overloaded.
Computes rounding-up of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodCeilingInPlace
Computes rounding-up of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodCenter(Boolean)Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCenter(Boolean)Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCenter(Boolean, Double)Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCenter(Boolean, Double)Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCoefficientOfVariation(Boolean)Overloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariation(Boolean)Overloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the coefficient of variation of container's values. http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.)
Public Extension MethodCoefficientOfVariationOrDefaultDouble(FuncDouble, 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(IListDouble, Boolean)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyData(Vector, Boolean)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyData(IListDouble, Boolean, Double)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyData(Vector, Boolean, Double)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyDataDouble(IListDouble, FuncDouble, Double, Boolean)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCopyDataDouble(IListDouble, FuncDouble, Double, Boolean, Double)Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodCorrelation(IEnumerableDouble, 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 MethodCorrelation(Vector, 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 MethodCorrelationDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, 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(Vector, 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 MethodCorrelationOrDefaultDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, Int32, 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 MethodCorrelogram(Vector, Int32, 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 MethodCorrelogram(IEnumerableDouble, Int32, 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 MethodCorrelogram(IEnumerableDouble, Int32, 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 MethodCorrelogram(Vector, Int32, Vector, 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 MethodCorrelogram(Vector, Int32, 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 MethodCorrelogram(IEnumerableDouble, Int32, 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 MethodCorrelogram(Vector, Int32, Vector, 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 MethodCorrelogramDouble(IEnumerableDouble, Int32, FuncDouble, 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 MethodCorrelogramDouble(IEnumerableDouble, Int32, Double, FuncDouble, 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 MethodCorrelogramDouble(IEnumerableDouble, Int32, FuncDouble, 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 MethodCorrelogramDouble(IEnumerableDouble, Int32, Double, FuncDouble, 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 MethodCosOverloaded.
Computes cosine of vector elements.
(Defined by VectorMath.)
Public Extension MethodCos(Vector)Overloaded.
Computes cosine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodCoshOverloaded.
Computes hyperbolic cosine of vector elements.
(Defined by VectorMath.)
Public Extension MethodCosh(Vector)Overloaded.
Computes hyperbolic cosine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodCoshInPlace
Computes hyperbolic cosine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodCosineSimilarity
Cosine Similarity Distance between two objects. http://en.wikipedia.org/wiki/Cosine_similarity
(Defined by MetricsCalculator.)
Public Extension MethodCosInPlace
Computes cosine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodCount(Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCount(Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefault(Int32, Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefault(Int32, Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCountOrDefaultDouble(FuncDouble, Double, Int32, Boolean)Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodCovariance(IEnumerableDouble, 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 MethodCovariance(Vector, 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 MethodCovarianceDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, 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(Vector, 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 MethodCovarianceOrDefaultDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, 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(Vector, 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 MethodCovariancePopulationDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, 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(Vector, 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 MethodCovariancePopulationOrDefaultDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, 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 MethodCovarianceSample(Vector, 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 MethodCovarianceSampleDouble(IEnumerableDouble, FuncDouble, 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(IEnumerableDouble, 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(Vector, 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 MethodCovarianceSampleOrDefaultDouble(IEnumerableDouble, FuncDouble, 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(Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistribution(Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefault(Double, Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefault(Double, Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodCumulativeDistributionOrDefaultDouble(Double, FuncDouble, Double, Double, Boolean)Overloaded.
Estimates the value cumulative distribution function. http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.)
Public Extension MethodEnsureBoundaries(Double, Double, Boolean)Overloaded.
Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureBoundaries(Double, Double, Boolean)Overloaded.
Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureBoundaries(Double, Double, Boolean, Double)Overloaded.
Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureBoundaries(Double, Double, Boolean, Double)Overloaded.
Values below leftBoundary will be replaced with leftBoundary value. Values above rightBoundary will be replaced with rightBoundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureLeftBoundary(Double, Boolean)Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureLeftBoundary(Double, Boolean)Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureLeftBoundary(Double, Boolean, Double)Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureLeftBoundary(Double, Boolean, Double)Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureRightBoundary(Double, Boolean)Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureRightBoundary(Double, Boolean)Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureRightBoundary(Double, Boolean, Double)Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodEnsureRightBoundary(Double, Boolean, Double)Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodErfOverloaded.
Computes error function of vector elements.
(Defined by VectorMath.)
Public Extension MethodErf(Vector)Overloaded.
Computes error function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodErfcOverloaded.
Computes complementary error function of vector elements.
(Defined by VectorMath.)
Public Extension MethodErfc(Vector)Overloaded.
Computes complementary error function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodErfcInPlace
Computes complementary error function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodErfcInvOverloaded.
Computes inverse complementary error function of vector elements.
(Defined by VectorMath.)
Public Extension MethodErfcInv(Vector)Overloaded.
Computes inverse complementary error function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodErfcInvInPlace
Computes inverse complementary error function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodErfInPlace
Computes error function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodErfInvOverloaded.
Computes inverse error function of vector elements.
(Defined by VectorMath.)
Public Extension MethodErfInv(Vector)Overloaded.
Computes inverse error function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodErfInvInPlace
Computes inverse error function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodEuclideanDistance
Euclidean Distance between two objects, http://en.wikipedia.org/wiki/Euclidean_distance
(Defined by MetricsCalculator.)
Public Extension MethodExpOverloaded.
Computes exponential of vector elements.
(Defined by VectorMath.)
Public Extension MethodExp(Vector)Overloaded.
Computes exponential of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodExpInPlace
Computes exponential of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodFirstRawMoment(Boolean)Overloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMoment(Boolean)Overloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the first raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFirstRawMomentOrDefaultDouble(FuncDouble, 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 MethodFloorOverloaded.
Computes rounding-down of vector elements.
(Defined by VectorMath.)
Public Extension MethodFloor(Vector)Overloaded.
Computes rounding-down of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodFloorInPlace
Computes rounding-down of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodFourthCentralMoment(Boolean)Overloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMoment(Boolean)Overloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the fourth central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthCentralMomentOrDefaultDouble(FuncDouble, 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 MethodFourthRawMoment(Boolean)Overloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMoment(Boolean)Overloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the fourth raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodFourthRawMomentOrDefaultDouble(FuncDouble, 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 MethodGammaOverloaded.
Computes gamma function of vector elements.
(Defined by VectorMath.)
Public Extension MethodGamma(Vector)Overloaded.
Computes gamma function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodGammaInPlace
Computes gamma function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodGammaLnOverloaded.
Computes log gamma function of vector elements.
(Defined by VectorMath.)
Public Extension MethodGammaLn(Vector)Overloaded.
Computes log gamma function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodGammaLnInPlace
Computes log gamma function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodGeometricMean(Boolean)Overloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMean(Boolean)Overloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the geometric mean of the container's values. http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodGeometricMeanOrDefaultDouble(FuncDouble, 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(Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom(Int32, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom(Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottom(Int32, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomDouble(Int32, DescriptiveStatisticsBaseGetRankDelegateDouble)Overloaded.
Returns given amount of objects with biggest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetBottomDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices(Int32, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices(Int32, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices(Double, Int32, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndices(Double, Int32, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndicesDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetBottomIndicesDouble(Double, Int32, FuncDouble, Double, Boolean)Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetCentered(Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(IListDouble, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(Vector, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(IListDouble, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCentered(Vector, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDouble(FuncDouble, Double, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDouble(IListDouble, FuncDouble, Double, Boolean)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDouble(FuncDouble, Double, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetCenteredDouble(IListDouble, FuncDouble, Double, Boolean, Double)Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredBoundaries(Double, 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 MethodGetEnsuredBoundaries(Double, 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 MethodGetEnsuredBoundaries(Double, Double, IListDouble, 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 MethodGetEnsuredBoundaries(Double, 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 MethodGetEnsuredBoundaries(Double, Double, Vector, 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 MethodGetEnsuredBoundaries(Double, 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 MethodGetEnsuredBoundaries(Double, Double, IListDouble, 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 MethodGetEnsuredBoundaries(Double, Double, Vector, 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 MethodGetEnsuredBoundariesDouble(Double, Double, FuncDouble, 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 MethodGetEnsuredBoundariesDouble(Double, Double, IListDouble, FuncDouble, 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 MethodGetEnsuredBoundariesDouble(Double, Double, FuncDouble, 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 MethodGetEnsuredBoundariesDouble(Double, Double, IListDouble, FuncDouble, 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(Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, IListDouble, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, Vector, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, IListDouble, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundary(Double, Vector, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDouble(Double, IListDouble, FuncDouble, Double, Boolean)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDouble(Double, FuncDouble, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredLeftBoundaryDouble(Double, IListDouble, FuncDouble, Double, Boolean, Double)Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, IListDouble, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, Vector, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, IListDouble, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundary(Double, Vector, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDouble(Double, IListDouble, FuncDouble, Double, Boolean)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDouble(Double, FuncDouble, Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetEnsuredRightBoundaryDouble(Double, IListDouble, FuncDouble, Double, Boolean, Double)Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized(Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized(Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized(IListDouble, Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized(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 MethodGetStandardized(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 MethodGetStandardized(Vector, Boolean)Overloaded.
Stores standardized copy of the given collection into another one. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodGetStandardized(IListDouble, 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 MethodGetStandardized(Vector, 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 MethodGetStandardizedDouble(FuncDouble, 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 MethodGetStandardizedDouble(IListDouble, FuncDouble, 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 MethodGetStandardizedDouble(FuncDouble, 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 MethodGetStandardizedDouble(IListDouble, FuncDouble, 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(Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTop(Int32, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTop(Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTop(Int32, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopDouble(Int32, DescriptiveStatisticsBaseGetRankDelegateDouble)Overloaded.
Returns given amount of objects with smallest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodGetTopDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices(Int32, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices(Int32, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices(Double, Int32, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndices(Double, Int32, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndicesDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodGetTopIndicesDouble(Double, Int32, FuncDouble, Double, Boolean)Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.)
Public Extension MethodHammingMetric
Hamming Distance between two objects. http://en.wikipedia.org/wiki/Hamming_distance
(Defined by MetricsCalculator.)
Public Extension MethodHarmonicMean(Boolean)Overloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMean(Boolean)Overloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the harmonic mean of the container's values. http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodHarmonicMeanOrDefaultDouble(FuncDouble, 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 MethodInfinityDistance
Maximum Distance between two objects. http://en.wikipedia.org/wiki/Uniform_norm
(Defined by MetricsCalculator.)
Public Extension MethodInvOverloaded.
Computes inversion of vector elements.
(Defined by VectorMath.)
Public Extension MethodInv(Vector)Overloaded.
Computes inversion of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodInvCbrtOverloaded.
Computes inverse cubic root of vector elements.
(Defined by VectorMath.)
Public Extension MethodInvCbrt(Vector)Overloaded.
Computes inverse cubic root of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodInvCbrtInPlace
Computes inverse cubic root of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodInvInPlace
Computes inversion of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodInvSqrtOverloaded.
Computes inverse square root of vector elements.
(Defined by VectorMath.)
Public Extension MethodInvSqrt(Vector)Overloaded.
Computes inverse square root of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodInvSqrtInPlace
Computes inverse square root of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodKurtosis(Boolean)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosis(Boolean)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisDouble(FuncDouble, 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, Boolean)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOrDefault(Double, Boolean)Overloaded.
Returns the excess kurtosis of the container's values. http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.)
Public Extension MethodKurtosisOrDefaultDouble(FuncDouble, 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(Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest(IListDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargest(Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Double, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(IListDouble, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble(Int32, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble, TResult(Double, FuncDouble, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble, TResult(IListDouble, FuncDouble, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestDouble, TResult(Int32, FuncDouble, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices(Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices(Double, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndices(IListDouble, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, Decimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, Int64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, NullableDecimal)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, NullableInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, NullableInt64)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, Decimal, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, Decimal, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, Single, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, Int32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, Int32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, Int64, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, Int64, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, NullableDecimal, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, NullableDecimal, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Int32, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, NullableInt32, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, NullableInt32, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, NullableInt64, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, NullableInt64, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, Double, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, Double, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, Single, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, Single, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, NullableDouble, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, NullableDouble, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(Double, FuncDouble, NullableSingle, Int32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble(IListDouble, FuncDouble, NullableSingle, IListInt32, Boolean)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble, TResult(Int32, FuncDouble, TResult)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble, TResult(Double, FuncDouble, TResult, Int32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLargestIndicesDouble, TResult(IListDouble, FuncDouble, TResult, IListInt32)Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodLogOverloaded.
Computes natural logarithm of vector elements.
(Defined by VectorMath.)
Public Extension MethodLog(Vector)Overloaded.
Computes natural logarithm of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodLogInPlace
Computes natural logarithm of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodManhattanDistance
Manhattan Distance between two objects. http://en.wikipedia.org/wiki/Manhattan_distance
(Defined by MetricsCalculator.)
Public Extension MethodMantegnaMetric
Mantegna Metric between two objects. Mantegna - Metric which convert correlation into distance.
(Defined by MetricsCalculator.)
Public Extension MethodMaximum(Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximum(Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndex(Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndex(Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumIndexOrDefaultDouble(FuncDouble, Double, Int32, Boolean)Overloaded.
Returns the index of the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefault(Double, Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefault(Double, Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMaximumOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the maximal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMean(Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMean(Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanDouble(FuncDouble, 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, Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOrDefault(Double, Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMeanOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the mean of the container's values. http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.)
Public Extension MethodMedian(Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedian(Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefault(Double, Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefault(Double, Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMedianOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the median of the container's values. http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrange(Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrange(Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeDouble(FuncDouble, 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, Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOrDefault(Double, Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMidrangeOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the midrange of the container's values. http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimum(Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimum(Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndex(Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndex(Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefault(Int32, Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumIndexOrDefaultDouble(FuncDouble, Double, Int32, Boolean)Overloaded.
Returns the index of the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximum(Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximum(Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefault(DescriptiveStatisticsMinimumMaximumValuesDouble, Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefault(DescriptiveStatisticsMinimumMaximumValuesDouble, Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumMaximumOrDefaultDouble(FuncDouble, Double, DescriptiveStatisticsMinimumMaximumValuesDouble, Boolean)Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefault(Double, Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefault(Double, Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodMinimumOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the minimal value in the given container.
(Defined by DescriptiveStatistics.)
Public Extension MethodNormalCdfOverloaded.
Computes normal cumulative distribution function of vector elements.
(Defined by VectorMath.)
Public Extension MethodNormalCdf(Vector)Overloaded.
Computes normal cumulative distribution function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodNormalCdfInPlace
Computes normal cumulative distribution function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodNormalCdfInvOverloaded.
Computes inverse normal cumulative distribution function of vector elements.
(Defined by VectorMath.)
Public Extension MethodNormalCdfInv(Vector)Overloaded.
Computes inverse normal cumulative distribution function of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodNormalCdfInvInPlace
Computes inverse normal cumulative distribution function of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodOrderStatistic(Int32, Boolean)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatistic(Int32, Boolean)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticDouble(Int32, FuncDouble, 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, 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, Boolean)Overloaded.
Returns order statistic of specified rank from container's value. http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.)
Public Extension MethodOrderStatisticOrDefaultDouble(Int32, FuncDouble, 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 MethodPow(Double)Overloaded.
Raises each element of a vector to the constant power.
(Defined by VectorMath.)
Public Extension MethodPow(Double, Vector)Overloaded.
Raises each element of a vector to the constant power. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodPowInPlace
Raises each element of a vector to the constant power. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodQuadraticMean(Boolean)Overloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMean(Boolean)Overloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the quadratic mean of the container's values. http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.)
Public Extension MethodQuadraticMeanOrDefaultDouble(FuncDouble, 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, Boolean)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantile(Double, Boolean)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileDouble(Double, FuncDouble, 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, 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, Boolean)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodQuantileOrDefaultDouble(Double, FuncDouble, Double, Double, Boolean)Overloaded.
Returns quantile of specified level from container's value. http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.)
Public Extension MethodRandomPermutate(RandomGenerator)Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodRandomPermutateDouble(RandomGenerator)Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodRandomPermutateDouble(Int32, Int32, RandomGenerator)Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.)
Public Extension MethodRoundOverloaded.
Computes rounding nearest integer of vector elements.
(Defined by VectorMath.)
Public Extension MethodRound(Vector)Overloaded.
Computes rounding nearest integer of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodRoundInPlace
Computes rounding nearest integer of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodSecondCentralMoment(Boolean)Overloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMoment(Boolean)Overloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the second central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondCentralMomentOrDefaultDouble(FuncDouble, 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 MethodSecondRawMoment(Boolean)Overloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMoment(Boolean)Overloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the second raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodSecondRawMomentOrDefaultDouble(FuncDouble, 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 MethodSinOverloaded.
Computes sine of vector elements.
(Defined by VectorMath.)
Public Extension MethodSin(Vector)Overloaded.
Computes sine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodSinhOverloaded.
Computes hyperbolic sine of vector elements.
(Defined by VectorMath.)
Public Extension MethodSinh(Vector)Overloaded.
Computes hyperbolic sine of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodSinhInPlace
Computes hyperbolic sine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodSinInPlace
Computes sine of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodSkewness(Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewness(Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefault(Double, Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefault(Double, Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSkewnessOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the skewness of the container's values. http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.)
Public Extension MethodSmallest(Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest(IListDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallest(Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Double, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(IListDouble, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble(Int32, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble, TResult(Double, FuncDouble, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble, TResult(IListDouble, FuncDouble, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestDouble, TResult(Int32, FuncDouble, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices(Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices(Double, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndices(IListDouble, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, Decimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, Int64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, NullableDecimal)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, NullableInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, NullableInt64)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, Decimal, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, Decimal, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, Double, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, Single, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, Int32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, Int32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, Int64, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, Int64, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, NullableDecimal, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, NullableDecimal, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, NullableDouble, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Int32, FuncDouble, NullableSingle, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, NullableInt32, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, NullableInt32, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, NullableInt64, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, NullableInt64, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, Double, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, Double, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, Single, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, Single, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, NullableDouble, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, NullableDouble, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(Double, FuncDouble, NullableSingle, Int32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble(IListDouble, FuncDouble, NullableSingle, IListInt32, Boolean)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble, TResult(Int32, FuncDouble, TResult)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble, TResult(Double, FuncDouble, TResult, Int32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSmallestIndicesDouble, TResult(IListDouble, FuncDouble, TResult, IListInt32)Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.)
Public Extension MethodSqrOverloaded.
Computes second degree of vector elements.
(Defined by VectorMath.)
Public Extension MethodSqr(Vector)Overloaded.
Computes second degree of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodSqrInPlace
Computes second degree of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodSqrtOverloaded.
Computes squares root of vector elements.
(Defined by VectorMath.)
Public Extension MethodSqrt(Vector)Overloaded.
Computes squares root of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodSqrtInPlace
Computes squares root of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodSquaredEuclideanDistance
Squared Euclidean Distance between two objects. It is just square of Euclidean distance.
(Defined by MetricsCalculator.)
Public Extension MethodStandardDeviation(Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviation(Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationOrDefaultDouble(FuncDouble, 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 MethodStandardDeviationPopulation(Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulation(Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the population standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationPopulationOrDefaultDouble(FuncDouble, 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 MethodStandardDeviationSample(Boolean)Overloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSample(Boolean)Overloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the sample standard deviation of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodStandardDeviationSampleOrDefaultDouble(FuncDouble, 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(Boolean)Overloaded.
Standardizes the values in the given collection. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodStandardize(Boolean)Overloaded.
Standardizes the values in the given collection. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodStandardize(Boolean, Double)Overloaded.
Standardizes the values in the given collection. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodStandardize(Boolean, Double)Overloaded.
Standardizes the values in the given collection. http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodSum(Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSum(Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudes(Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudes(Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefault(Double, Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefault(Double, Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumMagnitudesOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefault(Double, Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefault(Double, Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquares(Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquares(Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresDouble(FuncDouble, Double, Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefault(Double, Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefault(Double, Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodSumSquaresOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.)
Public Extension MethodTanOverloaded.
Computes tangent of vector elements.
(Defined by VectorMath.)
Public Extension MethodTan(Vector)Overloaded.
Computes tangent of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodTanhOverloaded.
Computes hyperbolic tangent of vector elements.
(Defined by VectorMath.)
Public Extension MethodTanh(Vector)Overloaded.
Computes hyperbolic tangent of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodTanhInPlace
Computes hyperbolic tangent of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodTanInPlace
Computes tangent of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodThirdCentralMoment(Boolean)Overloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMoment(Boolean)Overloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the third central moment of the container's values. http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdCentralMomentOrDefaultDouble(FuncDouble, 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 MethodThirdRawMoment(Boolean)Overloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMoment(Boolean)Overloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentDouble(FuncDouble, 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, 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, Boolean)Overloaded.
Returns the third raw moment of the container's values. http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.)
Public Extension MethodThirdRawMomentOrDefaultDouble(FuncDouble, 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 MethodToArray(Boolean)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArray(Boolean)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArray(Boolean, Double)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArray(Boolean, Double)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArrayDouble(FuncDouble, Double, Boolean)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodToArrayDouble(FuncDouble, Double, Boolean, Double)Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.)
Public Extension MethodTruncateOverloaded.
Computes truncating of fractional part of vector elements.
(Defined by VectorMath.)
Public Extension MethodTruncate(Vector)Overloaded.
Computes truncating of fractional part of vector elements. Result will be stored in result vector.
(Defined by VectorMath.)
Public Extension MethodTruncateInPlace
Computes truncating of fractional part of vector elements. And rewrite original vector with operation result.
(Defined by VectorMath.)
Public Extension MethodVariance(Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariance(Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceDouble(FuncDouble, 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, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceOrDefault(Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulation(Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulation(Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationDouble(FuncDouble, 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, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOrDefault(Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVariancePopulationOrDefaultDouble(FuncDouble, Double, Double, Boolean)Overloaded.
Returns the population variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSample(Boolean)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSample(Boolean)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleDouble(FuncDouble, 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, Boolean)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOrDefault(Double, Boolean)Overloaded.
Returns the sample variance of the container's values. http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.)
Public Extension MethodVarianceSampleOrDefaultDouble(FuncDouble, 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