Click or drag to resize

SortIndexResults Class

Represents the results of sorting operations applied to matrix entries and to their corresponding linear indexes.
Inheritance Hierarchy
SystemObject
  Novacta.AnalyticsSortIndexResults

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public class SortIndexResults

The SortIndexResults type exposes the following members.

Constructors
  NameDescription
Public methodSortIndexResults
Initializes a new instance of the SortIndexResults class
Top
Properties
  NameDescription
Public propertySortedData
Gets the sorted data matrix.
Public propertySortedIndexes
Gets the original linear indexes of sorted entries arranged in the same ordering.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

Matrix entries are interpreted as well ordered following a column major ordering. The position of an entry in such well ordering is referred to as the linear position of that entry.

Property SortedData returns the matrix whose entries are those of the original matrix but ordered through a sorting operation.

Property SortedIndexes gets the original linear positions of the sorted entries, arranged in the same order applied to sort matrix entries.

See Also