Vector Methods |
The Vector type exposes the following members.
Name | Description | |
---|---|---|
![]() | Add(Double) |
Adds the given scalar to the vector and returns the result.
|
![]() | Add(Vector) |
Adds the given vector to this one and returns the result.
|
![]() | Add(Double, Vector) |
Adds the given scalar to the vector and writes the result
to another one.
|
![]() | Add(Vector, Vector) |
Adds the given vector to this vector and writes the result to
another one.
|
![]() | AddInPlace(Double) |
Adds the given scalar to the vector.
|
![]() | AddInPlace(Vector) |
Adds the given vector to this vector.
|
![]() | AddRange |
Adds the elements of the specified collection to the end of the Vector.
|
![]() | AddScaledVector(Double, Vector) |
Computes the sum of this vector and another vector multiplied by
the given scalar and returns the result.
|
![]() | AddScaledVector(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.
|
![]() | AddScaledVectorInPlace |
Adds another vector multiplied by given scalar to this one.
|
![]() | Assign(Double) |
Sets all elements of the vector to the given value. This is the same as SetValues() call.
|
![]() | Assign(Double[]) |
Sets elements of this vector. This is the same as SetValues() call.
|
![]() | Clear |
Sets all elements of this vector to zero.
|
![]() | Clone |
Creates a copy of this Vector.
|
![]() ![]() | Concatenate(Vector, Vector) |
Concatenates two given vectors.
|
![]() ![]() | Concatenate(Vector, Vector, Vector) |
Concatenates two given vectors and writes the result to another
one.
|
![]() | Contains | Determines whether the ICollection<T> contains a specific value. |
![]() | CopyTo(Vector) |
Copies the content of this vector to another.
|
![]() | CopyTo(Array, Int32) |
Copies the elements of the ICollection to an Array,
starting at a particular Array index.
|
![]() | CopyTo(Double[], Int32) | Copies the elements of the ICollection<T> to an Array, starting at a particular Array index. |
![]() | CopyTo(Vector, Int32, Int32, Int32) |
Copies part of this vector to another vector.
|
![]() | DelayedClone |
Returns a mirror of this vector.
|
![]() | Divide(Double) |
Divides this vector by the given scalar and returns the result.
|
![]() | Divide(Double, Vector) |
Divides this vector by the given scalar and writes the result
into another one.
|
![]() | DivideInPlace |
Divides this vector by the given scalar.
|
![]() | DotProduct() |
Computes the dot product of this vector with itself.
|
![]() | DotProduct(Vector) |
Computes the dot product of this vector with another.
|
![]() ![]() | DotProduct(Vector, Vector) |
Computes the dot product of two vectors.
|
![]() | Equals(Object) |
Determines whether the specified Object is equal to the
current Object.
(Overrides Object.Equals(Object).) |
![]() | Equals(Vector) |
Indicates whether the current vector is equal to another.
|
![]() | GeneralMatrixVectorMultiply |
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 |
![]() | GetEnumerator |
Returns an enumerator that iterates through the collection.
|
![]() | GetHashCode |
Serves as a hash function for a particular type.
(Overrides Object.GetHashCode().) |
![]() | GetSubVector(Int32, Vector) |
Gets values of the subvector of this vector.
|
![]() | GetSubVector(Int32, Int32) |
Gets values of the subvector of this vector.
|
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetValues() |
Returns the array of values of this vector.
|
![]() | GetValues(Double[]) |
Writes the elements of this vector to supplied array.
|
![]() | HasAbnormal |
Checks whether the vector contains abnormal numbers: NaN,
NegativeInfinity, or PositiveInfinity.
|
![]() | HasInfinity |
Checks whether the vector contains NegativeInfinity or
PositiveInfinity.
|
![]() | HasNaN |
Checks whether the vector contains NaN.
|
![]() | HasNegativeInfinity |
Checks whether the vector contains NegativeInfinity.
|
![]() | HasPositiveInfinity |
Checks whether the vector contains PositiveInfinity.
|
![]() | IndexOf | Determines the index of a specific item in the IList<T>. |
![]() | InfinityNorm |
Computes the infinity norm of the vector.
|
![]() | Insert | Inserts an item to the IList<T> at the specified index. |
![]() | InsertRange |
Inserts the elements of a collection into the Vector at the specified index.
|
![]() ![]() | KroneckerProduct |
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.
|
![]() | L1Norm |
Computes the L1 norm (Taxicab norm, Manhattan norm) of the vector.
|
![]() | L2Norm |
Computes the L2 norm (Euclidean norm) of the vector.
|
![]() | LeftSubtract(Double) |
Subtracts this vector from the given scalar and returns the result.
|
![]() | LeftSubtract(Vector) |
Subtracts this vector form the given one and returns the result.
|
![]() | LeftSubtract(Double, Vector) |
Subtracts this vector from the given scalar and writes the result
into another vector.
|
![]() | LeftSubtract(Vector, Vector) |
Subtracts this vector form the given one and writes the result
into another vector.
|
![]() | LeftSubtractInPlace(Double) |
Subtracts this vector from the given scalar.
|
![]() | LeftSubtractInPlace(Vector) |
Subtracts this vector from the given one.
|
![]() ![]() | Load |
Loads Vector from CSV file.
|
![]() | Minus() |
Returns the negated copy of itself.
|
![]() | Minus(Vector) |
Writes the negated copy of itself into another vector.
|
![]() | MinusInPlace |
Negates this vector.
|
![]() | Multiply(Double) |
Multiplies this vector by the given scalar and returns the result.
|
![]() | Multiply(Double, Vector) |
Multiplies this vector by the given scalar and writes the result
into another one.
|
![]() | MultiplyInPlace |
Multiplies this vector by given scalar.
|
![]() | Negate |
Negates all elements of this vector.
|
![]() | Norm |
Compute the L1, L2 or infinity norm of the vector.
|
![]() | Normalize |
Divides the each element of the vector onto the norm.
|
![]() | Permute |
Permutes elements of the vector.
|
![]() | Plus() |
Returns the copy of this vector.
|
![]() | Plus(Vector) |
Copies this vector into another one.
|
![]() | PlusInPlace |
Does nothing.
|
![]() | PNorm |
Computes the p-norm of the vector.
|
![]() | PointwiseAdd(Double) |
Adds the given scalar to each element of the vector and returns the result.
|
![]() | PointwiseAdd(Vector) |
Adds each element of the given vector to the corresponding element
of this one and returns the result.
|
![]() | PointwiseAdd(Double, Vector) |
Adds the given scalar to each element of the vector
and stores result in another one.
|
![]() | PointwiseAdd(Vector, Vector) |
Adds each element of the vector to the corresponding element
of this one and stores the result in another vector.
|
![]() | PointwiseAddInPlace(Double) |
Adds the given scalar to each element of the vector.
|
![]() | PointwiseAddInPlace(Vector) |
Adds each element of the vector to corresponding element
of this one.
|
![]() | PointwiseDivide(Double) |
Divides each element of the vector by the given scalar and
returns the result.
|
![]() | PointwiseDivide(Vector) |
Divides each element of this vector by corresponding element
of another one and returns the result.
|
![]() | PointwiseDivide(Double, Vector) |
Divides each element of the vector by the given scalar
and stores result in another one.
|
![]() | PointwiseDivide(Vector, Vector) |
Divides each element of this vector by corresponding element
of another one and stores the result in another vector.
|
![]() | PointwiseDivideInPlace(Double) |
Divides each element of the vector by the given scalar.
|
![]() | PointwiseDivideInPlace(Vector) |
Divides each element of this vector by corresponding element
of another one.
|
![]() | PointwiseLeftDivide(Double) |
Divides given scalar by each element of the vector and returns the result.
|
![]() | PointwiseLeftDivide(Vector) |
Divides each element of another vector by the corresponding
element of this one and returns the result.
|
![]() | PointwiseLeftDivide(Double, Vector) |
Divides given scalar by each element of the vector
and stores result in another one.
|
![]() | PointwiseLeftDivide(Vector, Vector) |
Divides each element of another vector by the corresponding
element of this one and stores the result in another vector.
|
![]() | PointwiseLeftDivideInPlace(Double) |
Divides given scalar by each element of the vector.
|
![]() | PointwiseLeftDivideInPlace(Vector) |
Divides each element of another vector by the corresponding
element of this one.
|
![]() | PointwiseLeftSubtract(Double) |
Subtracts the each element of the vector from the given scalar and
returns the result.
|
![]() | PointwiseLeftSubtract(Vector) |
Subtracts each element of this vector from the corresponding
element of another one and returns the result.
|
![]() | PointwiseLeftSubtract(Double, Vector) |
Subtracts the each element of the vector from the given
scalar and stores result in another one.
|
![]() | PointwiseLeftSubtract(Vector, Vector) |
Subtracts each element of this vector from the corresponding
element of another one and stores the result in another vector.
|
![]() | PointwiseLeftSubtractInPlace(Double) |
Subtracts the each element of the vector from the given scalar.
|
![]() | PointwiseLeftSubtractInPlace(Vector) |
Subtracts each element of this vector from the corresponding
element of another one.
|
![]() | PointwiseMultiply(Double) |
Multiplies each element of the vector by the given scalar and
returns the result.
|
![]() | PointwiseMultiply(Vector) |
Multiplies each element of this vector by corresponding element
of another one and returns the result.
|
![]() | PointwiseMultiply(Double, Vector) |
Multiplies each element of the vector by the given
scalar and stores result in another one.
|
![]() | PointwiseMultiply(Vector, Vector) |
Multiplies each element of this vector by corresponding element
of another one and stores result in another vector.
|
![]() | PointwiseMultiplyInPlace(Double) |
Multiplies each element of the vector by the given scalar.
|
![]() | PointwiseMultiplyInPlace(Vector) |
Multiplies each element of this vector by corresponding element
of another one.
|
![]() | PointwiseSubtract(Double) |
Subtracts the given scalar from each element of the vector and
returns the result.
|
![]() | PointwiseSubtract(Vector) |
Subtracts each element of the vector from the corresponding
element of this one and returns the result.
|
![]() | PointwiseSubtract(Double, Vector) |
Subtracts the given scalar from each element of the
vector and stores result in another one.
|
![]() | PointwiseSubtract(Vector, Vector) |
Subtracts each element of the vector from the corresponding
element of this one and stores result in another vector.
|
![]() | PointwiseSubtractInPlace(Double) |
Subtracts the given scalar from each element of the vector.
|
![]() | PointwiseSubtractInPlace(Vector) |
Subtracts each element of the vector from the corresponding
element of this one.
|
![]() ![]() | Random(Int32) |
Creates the vector of given size with elements that are sampled
from the continuous uniform [0;1] distribution.
|
![]() ![]() | Random(CVDistribution) |
Creates the vector that is a sample of given mutlivariate distribution.
|
![]() ![]() | Random(Int32, CUDistribution) |
Creates the vector of given size with elements that are sampled
from the specified distribution.
|
![]() ![]() | Random(Int32, RandomGenerator) |
Creates the vector of given size with elements uniformly
distributed in [0; 1].
|
![]() ![]() | Random(Int32, Random) |
Creates the vector of given size with elements uniformly
distributed in [0; 1].
|
![]() | Remove | Removes the first occurrence of a specific object from the ICollection<T>. |
![]() | RemoveAll(Double) |
Removes all elements that equals specified value. The Double.NaN values are also supported and compared via Double.IsNaN.
|
![]() | RemoveAll(Predicate<Double>) |
Removes all elements that match the conditions defined by the specified predicate.
|
![]() | RemoveAt | Removes the IList<T> item at the specified index. |
![]() | RemoveRange |
Removes a range of elements from the Vector.
|
![]() | Save |
Saves Vector to CSV file.
|
![]() | SetSubVector |
Sets values of the subvector of this vector.
|
![]() | SetValues(Double) |
Sets all elements of the vector to the given value. This is the same as Assign() call.
|
![]() | SetValues(Double[]) |
Sets elements of this vector. This is the same as Assign() call.
|
![]() | Subtract(Double) |
Subtracts the given scalar to this vector and returns the result.
|
![]() | Subtract(Vector) |
Subtracts the given vector from this one and returns the result.
|
![]() | Subtract(Double, Vector) |
Subtracts the given scalar from this vector and writes the result
to another one.
|
![]() | Subtract(Vector, Vector) |
Subtracts the given vector from this vector and writes the result
to another one.
|
![]() | SubtractInPlace(Double) |
Subtracts the given scalar from this vector.
|
![]() | SubtractInPlace(Vector) |
Subtracts the given vector from this vector.
|
![]() | TensorProduct() |
Computes the tensor product of this vector with itself.
|
![]() | TensorProduct(Matrix) |
Computes the tensor product of this vector with itself and stores it in result matrix.
|
![]() | TensorProduct(Vector) |
Computes the tensor product of current vector and specified vectors and store it in result matrix.
|
![]() | TensorProduct(Vector, Matrix) |
Computes the tensor product of current vector and specified vectors and stores it in result matrix.
|
![]() ![]() | TensorProduct(Vector, Vector) |
Computes the tensor product of two given vectors.
|
![]() ![]() | TensorProduct(Vector, Vector, Matrix) |
Computes the tensor product of two given vectors.
|
![]() | ToArray |
Returns an array filled with elements of this vector.
|
![]() | ToColumnMatrix |
Returns the matrix representation of this vector as column vector.
|
![]() | ToRowMatrix |
Returns the matrix representation of this vector as row vector.
|
![]() | ToString() |
Returns a String that represents the current Vector.
(Overrides Object.ToString().) |
![]() | ToString(IFormatProvider) |
Formats the value of the current instance using the specified format.
|
![]() | ToString(String) |
Formats the value of the current instance using the specified format.
|
![]() | ToString(String, IFormatProvider) |
Formats the value of the current instance using the specified format.
|
Name | Description | |
---|---|---|
![]() | AbsoluteMaximum(Boolean) | Overloaded. Returns the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximum(Boolean) | Overloaded. Returns the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximum<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumIndex(Boolean) | Overloaded. Returns the index of the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumIndex(Boolean) | Overloaded. Returns the index of the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumIndex<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the index of the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumIndexOrDefault<Double>(Func<Double, Double>, Int32, Boolean) | Overloaded. Returns the index of the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumOrDefault(Double, Boolean) | Overloaded. Returns the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumOrDefault(Double, Boolean) | Overloaded. Returns the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMaximumOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded. Returns the maximal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimum(Boolean) | Overloaded. Returns the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimum(Boolean) | Overloaded. Returns the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimum<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumIndex(Boolean) | Overloaded. Returns the index of the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumIndex(Boolean) | Overloaded. Returns the index of the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumIndex<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the index of the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumIndexOrDefault<Double>(Func<Double, Double>, Int32, Boolean) | Overloaded. Returns the index of the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumOrDefault(Double, Boolean) | Overloaded. Returns the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumOrDefault(Double, Boolean) | Overloaded. Returns the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | AbsoluteMinimumOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded. Returns the minimal absolute value in the given container. (Defined by DescriptiveStatistics.) |
![]() | ArcCos() | Overloaded.
Computes arccosine of vector elements.
(Defined by VectorMath.) |
![]() | ArcCos(Vector) | Overloaded.
Computes arccosine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ArcCosh() | Overloaded.
Computes hyperbolic arccosine of vector elements.
(Defined by VectorMath.) |
![]() | ArcCosh(Vector) | Overloaded.
Computes hyperbolic arccosine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ArcCoshInPlace |
Computes hyperbolic arccosine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ArcCosInPlace |
Computes arccosine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ArcSin() | Overloaded.
Computes arcsine of vector elements.
(Defined by VectorMath.) |
![]() | ArcSin(Vector) | Overloaded.
Computes arcsine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ArcSinh() | Overloaded.
Computes hyperbolic arcsine of vector elements.
(Defined by VectorMath.) |
![]() | ArcSinh(Vector) | Overloaded.
Computes hyperbolic arcsine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ArcSinhInPlace |
Computes hyperbolic arcsine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ArcSinInPlace |
Computes arcsine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ArcTan() | Overloaded.
Computes arctangent of vector elements.
(Defined by VectorMath.) |
![]() | ArcTan(Vector) | Overloaded.
Computes arctangent of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ArcTanh() | Overloaded.
Computes hyperbolic arctangent of vector elements.
(Defined by VectorMath.) |
![]() | ArcTanh(Vector) | Overloaded.
Computes hyperbolic arctangent of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ArcTanhInPlace |
Computes hyperbolic arctangent of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ArcTanInPlace |
Computes arctangent of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ArithmeticMean(Boolean) | Overloaded.
Returns the arithmetic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.) |
![]() | ArithmeticMean(Boolean) | Overloaded.
Returns the arithmetic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.) |
![]() | ArithmeticMean<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the arithmetic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.) |
![]() | ArithmeticMeanOrDefault(Double, Boolean) | Overloaded.
Returns the arithmetic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.) |
![]() | ArithmeticMeanOrDefault(Double, Boolean) | Overloaded.
Returns the arithmetic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.) |
![]() | ArithmeticMeanOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the arithmetic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Arithmetic_mean
(Defined by DescriptiveStatistics.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram(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.) |
![]() | Autocorrelogram<Double>(Int32, Func<Double, 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.) |
![]() | Autocorrelogram<Double>(Int32,Double[], Func<Double, 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.) |
![]() | Autocorrelogram<Double>(Int32, Func<Double, 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.) |
![]() | Autocorrelogram<Double>(Int32,Double[], Func<Double, 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.) |
![]() | CalculateMetric |
Calculate metric.
(Defined by MetricsCalculator.) |
![]() | Cbrt() | Overloaded.
Computes cubic root of vector elements.
(Defined by VectorMath.) |
![]() | Cbrt(Vector) | Overloaded.
Computes cubic root of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | CbrtInPlace |
Computes cubic root of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Ceiling() | Overloaded.
Computes rounding-up of vector elements.
(Defined by VectorMath.) |
![]() | Ceiling(Vector) | Overloaded.
Computes rounding-up of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | CeilingInPlace |
Computes rounding-up of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Center(Boolean) | Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Center(Boolean) | Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Center(Boolean, Double) | Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Center(Boolean, Double) | Overloaded.
Centers values in the given collection.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | CoefficientOfVariation(Boolean) | Overloaded.
Returns the coefficient of variation of container's values.
http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.) |
![]() | CoefficientOfVariation(Boolean) | Overloaded.
Returns the coefficient of variation of container's values.
http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.) |
![]() | CoefficientOfVariation<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the coefficient of variation of container's values.
http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.) |
![]() | CoefficientOfVariationOrDefault(Double, Boolean) | Overloaded.
Returns the coefficient of variation of container's values.
http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.) |
![]() | CoefficientOfVariationOrDefault(Double, Boolean) | Overloaded.
Returns the coefficient of variation of container's values.
http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.) |
![]() | CoefficientOfVariationOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the coefficient of variation of container's values.
http://en.wikipedia.org/wiki/Coefficient_of_variation
(Defined by DescriptiveStatistics.) |
![]() | CopyData(IList<Double>, Boolean) | Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | CopyData(Vector, Boolean) | Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | CopyData(IList<Double>, Boolean, Double) | Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | CopyData(Vector, Boolean, Double) | Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | CopyData<Double>(IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | CopyData<Double>(IList<Double>, Func<Double, Double>, Boolean, Double) | Overloaded.
Copy data from one container to another.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Correlation(IEnumerable<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.) |
![]() | Correlation(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.) |
![]() | Correlation<Double>(IEnumerable<Double>, Func<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.) |
![]() | CorrelationOrDefault(IEnumerable<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.) |
![]() | CorrelationOrDefault(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.) |
![]() | CorrelationOrDefault<Double>(IEnumerable<Double>, Func<Double, 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.) |
![]() | Correlogram(IEnumerable<Double>, 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.) |
![]() | Correlogram(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.) |
![]() | Correlogram(IEnumerable<Double>, 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.) |
![]() | Correlogram(IEnumerable<Double>, 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.) |
![]() | Correlogram(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.) |
![]() | Correlogram(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.) |
![]() | Correlogram(IEnumerable<Double>, 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.) |
![]() | Correlogram(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.) |
![]() | Correlogram<Double>(IEnumerable<Double>, Int32, Func<Double, 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.) |
![]() | Correlogram<Double>(IEnumerable<Double>, Int32,Double[], Func<Double, 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.) |
![]() | Correlogram<Double>(IEnumerable<Double>, Int32, Func<Double, 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.) |
![]() | Correlogram<Double>(IEnumerable<Double>, Int32,Double[], Func<Double, 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.) |
![]() | Cos() | Overloaded.
Computes cosine of vector elements.
(Defined by VectorMath.) |
![]() | Cos(Vector) | Overloaded.
Computes cosine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | Cosh() | Overloaded.
Computes hyperbolic cosine of vector elements.
(Defined by VectorMath.) |
![]() | Cosh(Vector) | Overloaded.
Computes hyperbolic cosine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | CoshInPlace |
Computes hyperbolic cosine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | CosineSimilarity |
Cosine Similarity Distance between two objects.
http://en.wikipedia.org/wiki/Cosine_similarity
(Defined by MetricsCalculator.) |
![]() | CosInPlace |
Computes cosine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Count(Boolean) | Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.) |
![]() | Count(Boolean) | Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.) |
![]() | Count<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.) |
![]() | CountOrDefault(Int32, Boolean) | Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.) |
![]() | CountOrDefault(Int32, Boolean) | Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.) |
![]() | CountOrDefault<Double>(Func<Double, Double>, Int32, Boolean) | Overloaded.
Returns the number of elements in the container.
(Defined by DescriptiveStatistics.) |
![]() | Covariance(IEnumerable<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.) |
![]() | Covariance(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.) |
![]() | Covariance<Double>(IEnumerable<Double>, Func<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.) |
![]() | CovarianceOrDefault(IEnumerable<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.) |
![]() | CovarianceOrDefault(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.) |
![]() | CovarianceOrDefault<Double>(IEnumerable<Double>, Func<Double, 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.) |
![]() | CovariancePopulation(IEnumerable<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.) |
![]() | CovariancePopulation(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.) |
![]() | CovariancePopulation<Double>(IEnumerable<Double>, Func<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.) |
![]() | CovariancePopulationOrDefault(IEnumerable<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.) |
![]() | CovariancePopulationOrDefault(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.) |
![]() | CovariancePopulationOrDefault<Double>(IEnumerable<Double>, Func<Double, 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.) |
![]() | CovarianceSample(IEnumerable<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.) |
![]() | CovarianceSample(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.) |
![]() | CovarianceSample<Double>(IEnumerable<Double>, Func<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.) |
![]() | CovarianceSampleOrDefault(IEnumerable<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.) |
![]() | CovarianceSampleOrDefault(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.) |
![]() | CovarianceSampleOrDefault<Double>(IEnumerable<Double>, Func<Double, 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.) |
![]() | CumulativeDistribution(Double, Boolean) | Overloaded.
Estimates the value cumulative distribution function.
http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.) |
![]() | CumulativeDistribution(Double, Boolean) | Overloaded.
Estimates the value cumulative distribution function.
http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.) |
![]() | CumulativeDistribution<Double>(Double, Func<Double, Double>, Boolean) | Overloaded.
Estimates the value cumulative distribution function.
http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.) |
![]() | CumulativeDistributionOrDefault(Double, Double, Boolean) | Overloaded.
Estimates the value cumulative distribution function.
http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.) |
![]() | CumulativeDistributionOrDefault(Double, Double, Boolean) | Overloaded.
Estimates the value cumulative distribution function.
http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.) |
![]() | CumulativeDistributionOrDefault<Double>(Double, Func<Double, Double>, Double, Boolean) | Overloaded.
Estimates the value cumulative distribution function.
http://en.wikipedia.org/wiki/Cumulative_distribution_function
(Defined by DescriptiveStatistics.) |
![]() | EnsureBoundaries(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.) |
![]() | EnsureBoundaries(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.) |
![]() | EnsureBoundaries(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.) |
![]() | EnsureBoundaries(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.) |
![]() | EnsureLeftBoundary(Double, Boolean) | Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureLeftBoundary(Double, Boolean) | Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureLeftBoundary(Double, Boolean, Double) | Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureLeftBoundary(Double, Boolean, Double) | Overloaded.
Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureRightBoundary(Double, Boolean) | Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureRightBoundary(Double, Boolean) | Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureRightBoundary(Double, Boolean, Double) | Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | EnsureRightBoundary(Double, Boolean, Double) | Overloaded.
Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Erf() | Overloaded.
Computes error function of vector elements.
(Defined by VectorMath.) |
![]() | Erf(Vector) | Overloaded.
Computes error function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | Erfc() | Overloaded.
Computes complementary error function of vector elements.
(Defined by VectorMath.) |
![]() | Erfc(Vector) | Overloaded.
Computes complementary error function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ErfcInPlace |
Computes complementary error function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ErfcInv() | Overloaded.
Computes inverse complementary error function of vector elements.
(Defined by VectorMath.) |
![]() | ErfcInv(Vector) | Overloaded.
Computes inverse complementary error function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ErfcInvInPlace |
Computes inverse complementary error function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ErfInPlace |
Computes error function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ErfInv() | Overloaded.
Computes inverse error function of vector elements.
(Defined by VectorMath.) |
![]() | ErfInv(Vector) | Overloaded.
Computes inverse error function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ErfInvInPlace |
Computes inverse error function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | EuclideanDistance |
Euclidean Distance between two objects,
http://en.wikipedia.org/wiki/Euclidean_distance
(Defined by MetricsCalculator.) |
![]() | Exp() | Overloaded.
Computes exponential of vector elements.
(Defined by VectorMath.) |
![]() | Exp(Vector) | Overloaded.
Computes exponential of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | ExpInPlace |
Computes exponential of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | FirstRawMoment(Boolean) | Overloaded.
Returns the first raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FirstRawMoment(Boolean) | Overloaded.
Returns the first raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FirstRawMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the first raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FirstRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the first raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FirstRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the first raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FirstRawMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the first raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | Floor() | Overloaded.
Computes rounding-down of vector elements.
(Defined by VectorMath.) |
![]() | Floor(Vector) | Overloaded.
Computes rounding-down of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | FloorInPlace |
Computes rounding-down of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | FourthCentralMoment(Boolean) | Overloaded.
Returns the fourth central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | FourthCentralMoment(Boolean) | Overloaded.
Returns the fourth central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | FourthCentralMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the fourth central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | FourthCentralMomentOrDefault(Double, Boolean) | Overloaded.
Returns the fourth central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | FourthCentralMomentOrDefault(Double, Boolean) | Overloaded.
Returns the fourth central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | FourthCentralMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the fourth central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | FourthRawMoment(Boolean) | Overloaded.
Returns the fourth raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FourthRawMoment(Boolean) | Overloaded.
Returns the fourth raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FourthRawMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the fourth raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FourthRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the fourth raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FourthRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the fourth raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | FourthRawMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the fourth raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | Gamma() | Overloaded.
Computes gamma function of vector elements.
(Defined by VectorMath.) |
![]() | Gamma(Vector) | Overloaded.
Computes gamma function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | GammaInPlace |
Computes gamma function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | GammaLn() | Overloaded.
Computes log gamma function of vector elements.
(Defined by VectorMath.) |
![]() | GammaLn(Vector) | Overloaded.
Computes log gamma function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | GammaLnInPlace |
Computes log gamma function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | GeometricMean(Boolean) | Overloaded.
Returns the geometric mean of the container's values.
http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.) |
![]() | GeometricMean(Boolean) | Overloaded.
Returns the geometric mean of the container's values.
http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.) |
![]() | GeometricMean<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the geometric mean of the container's values.
http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.) |
![]() | GeometricMeanOrDefault(Double, Boolean) | Overloaded.
Returns the geometric mean of the container's values.
http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.) |
![]() | GeometricMeanOrDefault(Double, Boolean) | Overloaded.
Returns the geometric mean of the container's values.
http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.) |
![]() | GeometricMeanOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the geometric mean of the container's values.
http://en.wikipedia.org/wiki/Average#Geometric_mean
(Defined by DescriptiveStatistics.) |
![]() | GetBottom(Double[], Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottom(Int32, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottom(Double[], Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottom(Int32, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottom<Double>(Int32, DescriptiveStatisticsBase.GetRankDelegate<Double>) | Overloaded.
Returns given amount of objects with biggest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.) |
![]() | GetBottom<Double>(Double[], Func<Double, Double>, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottom<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottomIndices(Int32, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottomIndices(Int32, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottomIndices(Double[],Int32[], Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottomIndices(Double[],Int32[], Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottomIndices<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetBottomIndices<Double>(Double[],Int32[], Func<Double, Double>, Boolean) | Overloaded.
Returns given number of largest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetCentered(Boolean) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(Boolean) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(IList<Double>, Boolean) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(Boolean, Double) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(Boolean, Double) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(Vector, Boolean) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(IList<Double>, Boolean, Double) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered(Vector, Boolean, Double) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered<Double>(Func<Double, Double>, Boolean) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered<Double>(IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered<Double>(Func<Double, Double>, Boolean, Double) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetCentered<Double>(IList<Double>, Func<Double, Double>, Boolean, Double) | Overloaded.
Stores centered copy of the given collection into another one.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredBoundaries(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.) |
![]() | GetEnsuredBoundaries(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.) |
![]() | GetEnsuredBoundaries(Double, Double, IList<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.) |
![]() | GetEnsuredBoundaries(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.) |
![]() | GetEnsuredBoundaries(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.) |
![]() | GetEnsuredBoundaries(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.) |
![]() | GetEnsuredBoundaries(Double, Double, IList<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.) |
![]() | GetEnsuredBoundaries(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.) |
![]() | GetEnsuredBoundaries<Double>(Double, Double, Func<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.) |
![]() | GetEnsuredBoundaries<Double>(Double, Double, IList<Double>, Func<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.) |
![]() | GetEnsuredBoundaries<Double>(Double, Double, Func<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.) |
![]() | GetEnsuredBoundaries<Double>(Double, Double, IList<Double>, Func<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.) |
![]() | GetEnsuredLeftBoundary(Double, Boolean) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, Boolean) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, IList<Double>, Boolean) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, Boolean, Double) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, Vector, Boolean) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, Boolean, Double) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, IList<Double>, Boolean, Double) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary(Double, Vector, Boolean, Double) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary<Double>(Double, Func<Double, Double>, Boolean) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary<Double>(Double, IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary<Double>(Double, Func<Double, Double>, Boolean, Double) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredLeftBoundary<Double>(Double, IList<Double>, Func<Double, Double>, Boolean, Double) | Overloaded.
Store copy of collection. Values below boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, Boolean) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, Boolean) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, IList<Double>, Boolean) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, Boolean, Double) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, Vector, Boolean) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, Boolean, Double) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, IList<Double>, Boolean, Double) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary(Double, Vector, Boolean, Double) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary<Double>(Double, Func<Double, Double>, Boolean) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary<Double>(Double, IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary<Double>(Double, Func<Double, Double>, Boolean, Double) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetEnsuredRightBoundary<Double>(Double, IList<Double>, Func<Double, Double>, Boolean, Double) | Overloaded.
Store copy of collection. Values above boundary will be replaced with boundary value.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(Boolean) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(Boolean) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(IList<Double>, Boolean) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(Boolean, Double) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(Boolean, Double) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(Vector, Boolean) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(IList<Double>, Boolean, Double) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized(Vector, Boolean, Double) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized<Double>(Func<Double, Double>, Boolean) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized<Double>(IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized<Double>(Func<Double, Double>, Boolean, Double) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetStandardized<Double>(IList<Double>, Func<Double, Double>, Boolean, Double) | Overloaded.
Stores standardized copy of the given collection into another one.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | GetTop(Double[], Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTop(Int32, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTop(Double[], Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTop(Int32, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTop<Double>(Int32, DescriptiveStatisticsBase.GetRankDelegate<Double>) | Overloaded.
Returns given amount of objects with smallest values gotten from specified delegate.
(Defined by DescriptiveStatisticsBase.) |
![]() | GetTop<Double>(Double[], Func<Double, Double>, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTop<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTopIndices(Int32, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTopIndices(Int32, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTopIndices(Double[],Int32[], Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTopIndices(Double[],Int32[], Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTopIndices<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | GetTopIndices<Double>(Double[],Int32[], Func<Double, Double>, Boolean) | Overloaded.
Returns given number of smallest values from the container.
(Defined by DescriptiveStatistics.) |
![]() | HammingMetric |
Hamming Distance between two objects.
http://en.wikipedia.org/wiki/Hamming_distance
(Defined by MetricsCalculator.) |
![]() | HarmonicMean(Boolean) | Overloaded.
Returns the harmonic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.) |
![]() | HarmonicMean(Boolean) | Overloaded.
Returns the harmonic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.) |
![]() | HarmonicMean<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the harmonic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.) |
![]() | HarmonicMeanOrDefault(Double, Boolean) | Overloaded.
Returns the harmonic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.) |
![]() | HarmonicMeanOrDefault(Double, Boolean) | Overloaded.
Returns the harmonic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.) |
![]() | HarmonicMeanOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the harmonic mean of the container's values.
http://en.wikipedia.org/wiki/Average#Harmonic_mean
(Defined by DescriptiveStatistics.) |
![]() | InfinityDistance |
Maximum Distance between two objects.
http://en.wikipedia.org/wiki/Uniform_norm
(Defined by MetricsCalculator.) |
![]() | Inv() | Overloaded.
Computes inversion of vector elements.
(Defined by VectorMath.) |
![]() | Inv(Vector) | Overloaded.
Computes inversion of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | InvCbrt() | Overloaded.
Computes inverse cubic root of vector elements.
(Defined by VectorMath.) |
![]() | InvCbrt(Vector) | Overloaded.
Computes inverse cubic root of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | InvCbrtInPlace |
Computes inverse cubic root of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | InvInPlace |
Computes inversion of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | InvSqrt() | Overloaded.
Computes inverse square root of vector elements.
(Defined by VectorMath.) |
![]() | InvSqrt(Vector) | Overloaded.
Computes inverse square root of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | InvSqrtInPlace |
Computes inverse square root of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Kurtosis(Boolean) | Overloaded.
Returns the excess kurtosis of the container's values.
http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.) |
![]() | Kurtosis(Boolean) | Overloaded.
Returns the excess kurtosis of the container's values.
http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.) |
![]() | Kurtosis<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the excess kurtosis of the container's values.
http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.) |
![]() | KurtosisOrDefault(Double, Boolean) | Overloaded.
Returns the excess kurtosis of the container's values.
http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.) |
![]() | KurtosisOrDefault(Double, Boolean) | Overloaded.
Returns the excess kurtosis of the container's values.
http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.) |
![]() | KurtosisOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the excess kurtosis of the container's values.
http://en.wikipedia.org/wiki/Kurtosis
(Defined by DescriptiveStatistics.) |
![]() | Largest(Double[], Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest(IList<Double>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest(Int32, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Decimal>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Decimal>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Decimal>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Int64>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Int64>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Int64>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Nullable<Decimal>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Nullable<Decimal>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Nullable<Decimal>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Nullable<Int32>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Nullable<Int32>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Nullable<Int32>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Nullable<Int64>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Nullable<Int64>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Nullable<Int64>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Double>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Single>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Single>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Single>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Double[], Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(IList<Double>, Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double>(Int32, Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double, TResult>(Double[], Func<Double, TResult>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double, TResult>(IList<Double>, Func<Double, TResult>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Largest<Double, TResult>(Int32, Func<Double, TResult>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices(Int32, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices(Double[],Int32[], Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices(IList<Double>, IList<Int32>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Decimal>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Int64>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Nullable<Decimal>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Nullable<Int32>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Nullable<Int64>>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[],Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Decimal>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Decimal>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Single>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Int32>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Int32>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Int64>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Int64>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Nullable<Decimal>>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Nullable<Decimal>>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Int32, Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Nullable<Int32>>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Nullable<Int32>>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Nullable<Int64>>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Nullable<Int64>>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Double>,Int32[], Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Double>, IList<Int32>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Single>,Int32[], Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Single>, IList<Int32>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Nullable<Double>>,Int32[], Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Nullable<Double>>, IList<Int32>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(Double[], Func<Double, Nullable<Single>>,Int32[], Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double>(IList<Double>, Func<Double, Nullable<Single>>, IList<Int32>, Boolean) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double, TResult>(Int32, Func<Double, TResult>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double, TResult>(Double[], Func<Double, TResult>,Int32[]) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | LargestIndices<Double, TResult>(IList<Double>, Func<Double, TResult>, IList<Int32>) | Overloaded.
Returns largest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Log() | Overloaded.
Computes natural logarithm of vector elements.
(Defined by VectorMath.) |
![]() | Log(Vector) | Overloaded.
Computes natural logarithm of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | LogInPlace |
Computes natural logarithm of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ManhattanDistance |
Manhattan Distance between two objects.
http://en.wikipedia.org/wiki/Manhattan_distance
(Defined by MetricsCalculator.) |
![]() | MantegnaMetric |
Mantegna Metric between two objects.
Mantegna - Metric which convert correlation into distance.
(Defined by MetricsCalculator.) |
![]() | Maximum(Boolean) | Overloaded. Returns the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | Maximum(Boolean) | Overloaded. Returns the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | Maximum<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumIndex(Boolean) | Overloaded. Returns the index of the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumIndex(Boolean) | Overloaded. Returns the index of the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumIndex<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the index of the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumIndexOrDefault<Double>(Func<Double, Double>, Int32, Boolean) | Overloaded. Returns the index of the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumOrDefault(Double, Boolean) | Overloaded. Returns the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumOrDefault(Double, Boolean) | Overloaded. Returns the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MaximumOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded. Returns the maximal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | Mean(Boolean) | Overloaded.
Returns the mean of the container's values.
http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.) |
![]() | Mean(Boolean) | Overloaded.
Returns the mean of the container's values.
http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.) |
![]() | Mean<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the mean of the container's values.
http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.) |
![]() | MeanOrDefault(Double, Boolean) | Overloaded.
Returns the mean of the container's values.
http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.) |
![]() | MeanOrDefault(Double, Boolean) | Overloaded.
Returns the mean of the container's values.
http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.) |
![]() | MeanOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the mean of the container's values.
http://en.wikipedia.org/wiki/Expected_value
(Defined by DescriptiveStatistics.) |
![]() | Median(Boolean) | Overloaded.
Returns the median of the container's values.
http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.) |
![]() | Median(Boolean) | Overloaded.
Returns the median of the container's values.
http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.) |
![]() | Median<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the median of the container's values.
http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.) |
![]() | MedianOrDefault(Double, Boolean) | Overloaded.
Returns the median of the container's values.
http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.) |
![]() | MedianOrDefault(Double, Boolean) | Overloaded.
Returns the median of the container's values.
http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.) |
![]() | MedianOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the median of the container's values.
http://en.wikipedia.org/wiki/Median
(Defined by DescriptiveStatistics.) |
![]() | Midrange(Boolean) | Overloaded.
Returns the midrange of the container's values.
http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.) |
![]() | Midrange(Boolean) | Overloaded.
Returns the midrange of the container's values.
http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.) |
![]() | Midrange<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the midrange of the container's values.
http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.) |
![]() | MidrangeOrDefault(Double, Boolean) | Overloaded.
Returns the midrange of the container's values.
http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.) |
![]() | MidrangeOrDefault(Double, Boolean) | Overloaded.
Returns the midrange of the container's values.
http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.) |
![]() | MidrangeOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the midrange of the container's values.
http://en.wikipedia.org/wiki/Mid-range
(Defined by DescriptiveStatistics.) |
![]() | Minimum(Boolean) | Overloaded. Returns the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | Minimum(Boolean) | Overloaded. Returns the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | Minimum<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumIndex(Boolean) | Overloaded. Returns the index of the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumIndex(Boolean) | Overloaded. Returns the index of the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumIndex<Double>(Func<Double, Double>, Boolean) | Overloaded. Returns the index of the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumIndexOrDefault(Int32, Boolean) | Overloaded. Returns the index of the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumIndexOrDefault<Double>(Func<Double, Double>, Int32, Boolean) | Overloaded. Returns the index of the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumMaximum(Boolean) | Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.) |
![]() | MinimumMaximum(Boolean) | Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.) |
![]() | MinimumMaximum<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.) |
![]() | MinimumMaximumOrDefault(DescriptiveStatistics.MinimumMaximumValues<Double>, Boolean) | Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.) |
![]() | MinimumMaximumOrDefault(DescriptiveStatistics.MinimumMaximumValues<Double>, Boolean) | Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.) |
![]() | MinimumMaximumOrDefault<Double>(Func<Double, Double>, DescriptiveStatistics.MinimumMaximumValues<Double>, Boolean) | Overloaded.
Returns the minimum, maximum, range and midrange statistics of the container's values.
(Defined by DescriptiveStatistics.) |
![]() | MinimumOrDefault(Double, Boolean) | Overloaded. Returns the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumOrDefault(Double, Boolean) | Overloaded. Returns the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | MinimumOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded. Returns the minimal value in the given container. (Defined by DescriptiveStatistics.) |
![]() | NormalCdf() | Overloaded.
Computes normal cumulative distribution function of vector elements.
(Defined by VectorMath.) |
![]() | NormalCdf(Vector) | Overloaded.
Computes normal cumulative distribution function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | NormalCdfInPlace |
Computes normal cumulative distribution function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | NormalCdfInv() | Overloaded.
Computes inverse normal cumulative distribution function of vector elements.
(Defined by VectorMath.) |
![]() | NormalCdfInv(Vector) | Overloaded.
Computes inverse normal cumulative distribution function of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | NormalCdfInvInPlace |
Computes inverse normal cumulative distribution function of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | OrderStatistic(Int32, Boolean) | Overloaded.
Returns order statistic of specified rank from container's value.
http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.) |
![]() | OrderStatistic(Int32, Boolean) | Overloaded.
Returns order statistic of specified rank from container's value.
http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.) |
![]() | OrderStatistic<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns order statistic of specified rank from container's value.
http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.) |
![]() | OrderStatisticOrDefault(Int32, Double, Boolean) | Overloaded.
Returns order statistic of specified rank from container's value.
http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.) |
![]() | OrderStatisticOrDefault(Int32, Double, Boolean) | Overloaded.
Returns order statistic of specified rank from container's value.
http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.) |
![]() | OrderStatisticOrDefault<Double>(Int32, Func<Double, Double>, Double, Boolean) | Overloaded.
Returns order statistic of specified rank from container's value.
http://en.wikipedia.org/wiki/Order_statistic
(Defined by DescriptiveStatistics.) |
![]() | Pow(Double) | Overloaded.
Raises each element of a vector to the constant power.
(Defined by VectorMath.) |
![]() | Pow(Double, Vector) | Overloaded.
Raises each element of a vector to the constant power.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | PowInPlace |
Raises each element of a vector to the constant power.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | QuadraticMean(Boolean) | Overloaded.
Returns the quadratic mean of the container's values.
http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.) |
![]() | QuadraticMean(Boolean) | Overloaded.
Returns the quadratic mean of the container's values.
http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.) |
![]() | QuadraticMean<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the quadratic mean of the container's values.
http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.) |
![]() | QuadraticMeanOrDefault(Double, Boolean) | Overloaded.
Returns the quadratic mean of the container's values.
http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.) |
![]() | QuadraticMeanOrDefault(Double, Boolean) | Overloaded.
Returns the quadratic mean of the container's values.
http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.) |
![]() | QuadraticMeanOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the quadratic mean of the container's values.
http://en.wikipedia.org/wiki/Quadratic_mean
(Defined by DescriptiveStatistics.) |
![]() | Quantile(Double, Boolean) | Overloaded.
Returns quantile of specified level from container's value.
http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.) |
![]() | Quantile(Double, Boolean) | Overloaded.
Returns quantile of specified level from container's value.
http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.) |
![]() | Quantile<Double>(Double, Func<Double, Double>, Boolean) | Overloaded.
Returns quantile of specified level from container's value.
http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.) |
![]() | QuantileOrDefault(Double, Double, Boolean) | Overloaded.
Returns quantile of specified level from container's value.
http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.) |
![]() | QuantileOrDefault(Double, Double, Boolean) | Overloaded.
Returns quantile of specified level from container's value.
http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.) |
![]() | QuantileOrDefault<Double>(Double, Func<Double, Double>, Double, Boolean) | Overloaded.
Returns quantile of specified level from container's value.
http://en.wikipedia.org/wiki/Quantile
(Defined by DescriptiveStatistics.) |
![]() | RandomPermutate(RandomGenerator) | Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.) |
![]() | RandomPermutate<Double>(RandomGenerator) | Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.) |
![]() | RandomPermutate<Double>(Int32, Int32, RandomGenerator) | Overloaded.
Performs random permutation values in collection.
(Defined by DescriptiveStatisticsBase.) |
![]() | Round() | Overloaded.
Computes rounding nearest integer of vector elements.
(Defined by VectorMath.) |
![]() | Round(Vector) | Overloaded.
Computes rounding nearest integer of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | RoundInPlace |
Computes rounding nearest integer of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | SecondCentralMoment(Boolean) | Overloaded.
Returns the second central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | SecondCentralMoment(Boolean) | Overloaded.
Returns the second central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | SecondCentralMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the second central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | SecondCentralMomentOrDefault(Double, Boolean) | Overloaded.
Returns the second central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | SecondCentralMomentOrDefault(Double, Boolean) | Overloaded.
Returns the second central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | SecondCentralMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the second central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | SecondRawMoment(Boolean) | Overloaded.
Returns the second raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | SecondRawMoment(Boolean) | Overloaded.
Returns the second raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | SecondRawMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the second raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | SecondRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the second raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | SecondRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the second raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | SecondRawMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the second raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | Sin() | Overloaded.
Computes sine of vector elements.
(Defined by VectorMath.) |
![]() | Sin(Vector) | Overloaded.
Computes sine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | Sinh() | Overloaded.
Computes hyperbolic sine of vector elements.
(Defined by VectorMath.) |
![]() | Sinh(Vector) | Overloaded.
Computes hyperbolic sine of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | SinhInPlace |
Computes hyperbolic sine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | SinInPlace |
Computes sine of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Skewness(Boolean) | Overloaded.
Returns the skewness of the container's values.
http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.) |
![]() | Skewness(Boolean) | Overloaded.
Returns the skewness of the container's values.
http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.) |
![]() | Skewness<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the skewness of the container's values.
http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.) |
![]() | SkewnessOrDefault(Double, Boolean) | Overloaded.
Returns the skewness of the container's values.
http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.) |
![]() | SkewnessOrDefault(Double, Boolean) | Overloaded.
Returns the skewness of the container's values.
http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.) |
![]() | SkewnessOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the skewness of the container's values.
http://en.wikipedia.org/wiki/Skewness
(Defined by DescriptiveStatistics.) |
![]() | Smallest(Double[], Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest(IList<Double>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest(Int32, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Decimal>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Decimal>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Decimal>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Int64>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Int64>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Int64>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Nullable<Decimal>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Nullable<Decimal>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Nullable<Decimal>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Nullable<Int32>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Nullable<Int32>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Nullable<Int32>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Nullable<Int64>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Nullable<Int64>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Nullable<Int64>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Double>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Double>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Single>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Single>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Single>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Double[], Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(IList<Double>, Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double>(Int32, Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double, TResult>(Double[], Func<Double, TResult>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double, TResult>(IList<Double>, Func<Double, TResult>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Smallest<Double, TResult>(Int32, Func<Double, TResult>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices(Int32, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices(Double[],Int32[], Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices(IList<Double>, IList<Int32>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Decimal>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Int64>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Nullable<Decimal>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Nullable<Int32>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Nullable<Int64>>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[],Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Decimal>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Decimal>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Double>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Single>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Int32>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Int32>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Int64>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Int64>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Nullable<Decimal>>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Nullable<Decimal>>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Nullable<Double>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Int32, Func<Double, Nullable<Single>>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Nullable<Int32>>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Nullable<Int32>>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Nullable<Int64>>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Nullable<Int64>>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Double>,Int32[], Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Double>, IList<Int32>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Single>,Int32[], Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Single>, IList<Int32>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Nullable<Double>>,Int32[], Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Nullable<Double>>, IList<Int32>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(Double[], Func<Double, Nullable<Single>>,Int32[], Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double>(IList<Double>, Func<Double, Nullable<Single>>, IList<Int32>, Boolean) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double, TResult>(Int32, Func<Double, TResult>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double, TResult>(Double[], Func<Double, TResult>,Int32[]) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | SmallestIndices<Double, TResult>(IList<Double>, Func<Double, TResult>, IList<Int32>) | Overloaded.
Returns smallest elements (total - count) using selector to receive as transform function.
(Defined by LargestSmallest.) |
![]() | Sqr() | Overloaded.
Computes second degree of vector elements.
(Defined by VectorMath.) |
![]() | Sqr(Vector) | Overloaded.
Computes second degree of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | SqrInPlace |
Computes second degree of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Sqrt() | Overloaded.
Computes squares root of vector elements.
(Defined by VectorMath.) |
![]() | Sqrt(Vector) | Overloaded.
Computes squares root of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | SqrtInPlace |
Computes squares root of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | SquaredEuclideanDistance |
Squared Euclidean Distance between two objects.
It is just square of Euclidean distance.
(Defined by MetricsCalculator.) |
![]() | StandardDeviation(Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviation(Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviation<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationOrDefault(Double, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationOrDefault(Double, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationPopulation(Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationPopulation(Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationPopulation<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationPopulationOrDefault(Double, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationPopulationOrDefault(Double, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationPopulationOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the population standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationSample(Boolean) | Overloaded.
Returns the sample standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationSample(Boolean) | Overloaded.
Returns the sample standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationSample<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the sample standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationSampleOrDefault(Double, Boolean) | Overloaded.
Returns the sample standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationSampleOrDefault(Double, Boolean) | Overloaded.
Returns the sample standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | StandardDeviationSampleOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the sample standard deviation of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | Standardize(Boolean) | Overloaded.
Standardizes the values in the given collection.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Standardize(Boolean) | Overloaded.
Standardizes the values in the given collection.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Standardize(Boolean, Double) | Overloaded.
Standardizes the values in the given collection.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Standardize(Boolean, Double) | Overloaded.
Standardizes the values in the given collection.
http://en.wikipedia.org/wiki/Standard_score
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Sum(Boolean) | Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | Sum(Boolean) | Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | Sum<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumMagnitudes(Boolean) | Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumMagnitudes(Boolean) | Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumMagnitudes<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumMagnitudesOrDefault(Double, Boolean) | Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumMagnitudesOrDefault(Double, Boolean) | Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumMagnitudesOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the sum of magnitudes of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumOrDefault(Double, Boolean) | Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumOrDefault(Double, Boolean) | Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the sum of values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumSquares(Boolean) | Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumSquares(Boolean) | Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumSquares<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumSquaresOrDefault(Double, Boolean) | Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumSquaresOrDefault(Double, Boolean) | Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.) |
![]() | SumSquaresOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the sum of squared values in data set.
(Defined by DescriptiveStatistics.) |
![]() | Tan() | Overloaded.
Computes tangent of vector elements.
(Defined by VectorMath.) |
![]() | Tan(Vector) | Overloaded.
Computes tangent of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | Tanh() | Overloaded.
Computes hyperbolic tangent of vector elements.
(Defined by VectorMath.) |
![]() | Tanh(Vector) | Overloaded.
Computes hyperbolic tangent of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | TanhInPlace |
Computes hyperbolic tangent of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | TanInPlace |
Computes tangent of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | ThirdCentralMoment(Boolean) | Overloaded.
Returns the third central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | ThirdCentralMoment(Boolean) | Overloaded.
Returns the third central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | ThirdCentralMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the third central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | ThirdCentralMomentOrDefault(Double, Boolean) | Overloaded.
Returns the third central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | ThirdCentralMomentOrDefault(Double, Boolean) | Overloaded.
Returns the third central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | ThirdCentralMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the third central moment of the container's values.
http://en.wikipedia.org/wiki/Central_moment
(Defined by DescriptiveStatistics.) |
![]() | ThirdRawMoment(Boolean) | Overloaded.
Returns the third raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | ThirdRawMoment(Boolean) | Overloaded.
Returns the third raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | ThirdRawMoment<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the third raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | ThirdRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the third raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | ThirdRawMomentOrDefault(Double, Boolean) | Overloaded.
Returns the third raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | ThirdRawMomentOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the third raw moment of the container's values.
http://en.wikipedia.org/wiki/Moment_(mathematics)
(Defined by DescriptiveStatistics.) |
![]() | ToArray(Boolean) | Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | ToArray(Boolean) | Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | ToArray(Boolean, Double) | Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | ToArray(Boolean, Double) | Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | ToArray<Double>(Func<Double, Double>, Boolean) | Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | ToArray<Double>(Func<Double, Double>, Boolean, Double) | Overloaded.
Copies the elements of the IEnumerable to a new array.
(Defined by DescriptiveStatisticsTransforms.) |
![]() | Truncate() | Overloaded.
Computes truncating of fractional part of vector elements.
(Defined by VectorMath.) |
![]() | Truncate(Vector) | Overloaded.
Computes truncating of fractional part of vector elements.
Result will be stored in result vector.
(Defined by VectorMath.) |
![]() | TruncateInPlace |
Computes truncating of fractional part of vector elements.
And rewrite original vector with operation result.
(Defined by VectorMath.) |
![]() | Variance(Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | Variance(Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | Variance<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceOrDefault(Double, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceOrDefault(Double, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VariancePopulation(Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VariancePopulation(Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VariancePopulation<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VariancePopulationOrDefault(Double, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VariancePopulationOrDefault(Double, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VariancePopulationOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the population variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceSample(Boolean) | Overloaded.
Returns the sample variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceSample(Boolean) | Overloaded.
Returns the sample variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceSample<Double>(Func<Double, Double>, Boolean) | Overloaded.
Returns the sample variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceSampleOrDefault(Double, Boolean) | Overloaded.
Returns the sample variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceSampleOrDefault(Double, Boolean) | Overloaded.
Returns the sample variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |
![]() | VarianceSampleOrDefault<Double>(Func<Double, Double>, Double, Boolean) | Overloaded.
Returns the sample variance of the container's values.
http://en.wikipedia.org/wiki/Variance
(Defined by DescriptiveStatistics.) |