Click or drag to resize
XMatrix Class

[Missing <summary> documentation for "T:Biolomics.SharedClasses.XMatrix"]

Inheritance Hierarchy
SystemObject
  System.Collections.GenericListVectorOfDouble
    Biolomics.SharedClassesXMatrix

Namespace:  Biolomics.SharedClasses
Assembly:  Biolomics.SharedClasses (in Biolomics.SharedClasses.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class XMatrix : List<VectorOfDouble>, 
	IArray

The XMatrix type exposes the following members.

Constructors
  NameDescription
Public methodXMatrix
Initializes a new instance of the XMatrix class.
Public methodXMatrix(XMatrix)
Initializes a new instance of the XMatrix class.
Public methodXMatrix(Int32, Int32)
Initializes a new instance of the XMatrix class with column number and row number size.
Top
Properties
  NameDescription
Public propertyCapacity
Gets or sets the total number of elements the internal data structure can hold without resizing.
(Inherited from ListVectorOfDouble.)
Public propertyCount
Public propertyItem
Gets or sets the element at the specified index.
(Inherited from ListVectorOfDouble.)
Top
Methods
  NameDescription
Public methodAdd
Adds the specified row.
Public methodAddRange (Inherited from ListVectorOfDouble.)
Public methodAsReadOnly (Inherited from ListVectorOfDouble.)
Public methodBinarySearch(T)
Searches the entire sorted ListT for an element using the default comparer and returns the zero-based index of the element.
(Inherited from ListVectorOfDouble.)
Public methodBinarySearch(T, IComparerT)
Searches the entire sorted ListT for an element using the specified comparer and returns the zero-based index of the element.
(Inherited from ListVectorOfDouble.)
Public methodBinarySearch(Int32, Int32, T, IComparerT)
Searches a range of elements in the sorted ListT for an element using the specified comparer and returns the zero-based index of the element.
(Inherited from ListVectorOfDouble.)
Public methodClear
Public methodColCount
Gets the Number of Columns in the matrix.
Public methodComplement
Complements to 1.0, to switch between Similarity and Distance
Public methodContains (Inherited from ListVectorOfDouble.)
Public methodConvertAllTOutput (Inherited from ListVectorOfDouble.)
Public methodCopyTo(T) (Inherited from ListVectorOfDouble.)
Public methodCopyTo(T, Int32) (Inherited from ListVectorOfDouble.)
Public methodCopyTo(Int32, T, Int32, Int32)
Copies a range of elements from the ListT to a compatible one-dimensional array, starting at the specified index of the target array.
(Inherited from ListVectorOfDouble.)
Public methodCorrelation
Pearson correlation matrix computation warning: works only to detect linear correlation between variables !
Public methodCorrelationNotZero
Pearson correlation matrix computation warning: works only to detect linear correlation between variables ! '''
Public methodCumSum
cumulative sum by column.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExists (Inherited from ListVectorOfDouble.)
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 methodFind
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire ListT.
(Inherited from ListVectorOfDouble.)
Public methodFindAll
Retrieves all the elements that match the conditions defined by the specified predicate.
(Inherited from ListVectorOfDouble.)
Public methodFindIndex(PredicateT)
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire ListT.
(Inherited from ListVectorOfDouble.)
Public methodFindIndex(Int32, PredicateT)
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the ListT that extends from the specified index to the last element.
(Inherited from ListVectorOfDouble.)
Public methodFindIndex(Int32, Int32, PredicateT)
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the ListT that starts at the specified index and contains the specified number of elements.
(Inherited from ListVectorOfDouble.)
Public methodFindLast
Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire ListT.
(Inherited from ListVectorOfDouble.)
Public methodFindLastIndex(PredicateT)
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire ListT.
(Inherited from ListVectorOfDouble.)
Public methodFindLastIndex(Int32, PredicateT)
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the ListT that extends from the first element to the specified index.
(Inherited from ListVectorOfDouble.)
Public methodFindLastIndex(Int32, Int32, PredicateT)
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the ListT that contains the specified number of elements and ends at the specified index.
(Inherited from ListVectorOfDouble.)
Public methodForEach (Inherited from ListVectorOfDouble.)
Public methodGetEnumerator (Inherited from ListVectorOfDouble.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetRange (Inherited from ListVectorOfDouble.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf(T) (Inherited from ListVectorOfDouble.)
Public methodIndexOf(T, Int32)
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the ListT that extends from the specified index to the last element.
(Inherited from ListVectorOfDouble.)
Public methodIndexOf(T, Int32, Int32)
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the ListT that starts at the specified index and contains the specified number of elements.
(Inherited from ListVectorOfDouble.)
Public methodInsert (Inherited from ListVectorOfDouble.)
Public methodInsertRange (Inherited from ListVectorOfDouble.)
Public methodLastIndexOf(T) (Inherited from ListVectorOfDouble.)
Public methodLastIndexOf(T, Int32)
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the ListT that extends from the first element to the specified index.
(Inherited from ListVectorOfDouble.)
Public methodLastIndexOf(T, Int32, Int32)
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the ListT that contains the specified number of elements and ends at the specified index.
(Inherited from ListVectorOfDouble.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRead
Reads the given string as a matrix. Columns must be TAB delimited and lines must be CR/LF delimited reading from line(p_FirstLine) to line(p_LastLine), both included
Public methodRemove (Inherited from ListVectorOfDouble.)
Public methodRemoveAll
Removes all the elements that match the conditions defined by the specified predicate.
(Inherited from ListVectorOfDouble.)
Public methodRemoveAt (Inherited from ListVectorOfDouble.)
Public methodRemoveColumn
Removes the column.
Public methodRemoveRange (Inherited from ListVectorOfDouble.)
Public methodRemoveRow
Removes the row.
Public methodReserve
Reserves the specified row capacity.
Public methodResize
Resizes to the specified row number and column number.
Public methodReverse (Inherited from ListVectorOfDouble.)
Public methodReverse(Int32, Int32)
Reverses the order of the elements in the specified range.
(Inherited from ListVectorOfDouble.)
Public methodRow
Gets the Row with specified row index.
Public methodRowCount
Gets the Number of rows in the matrix.
Public methodSort (Inherited from ListVectorOfDouble.)
Public methodSort(IComparerT) (Inherited from ListVectorOfDouble.)
Public methodSort(ComparisonT) (Inherited from ListVectorOfDouble.)
Public methodSort(Int32, Int32, IComparerT) (Inherited from ListVectorOfDouble.)
Public methodSymetricAverage
compute the average values and store them in bottom part
Public methodSymetricKeepBottom
copy the elemens below the diagonal into the top.
Public methodSymetricKeepTop
copy the elemens above the diagonal into the bottom.
Public methodToArray (Inherited from ListVectorOfDouble.)
Public methodToString
Returns a String that represents this instance.
(Overrides ObjectToString.)
Public methodTrimExcess (Inherited from ListVectorOfDouble.)
Public methodTrueForAll (Inherited from ListVectorOfDouble.)
Public methodValue
Values the specified row.
Public methodXMatrixFunctionList
a void sub just used to detect the class in BioEditor.RemoveItems()
Top
See Also