public abstract class AnyMatrix<T> : IEquatable<AnyMatrix<T>>
where T : Object, IEquatable<T>
Public MustInherit Class AnyMatrix(Of T As {Object, IEquatable(Of T)})
Implements IEquatable(Of AnyMatrix(Of T))
generic<typename T>
where T : Object, IEquatable<T>
public ref class AnyMatrix abstract : IEquatable<AnyMatrix<T>^>
[<AbstractClassAttribute>]
type AnyMatrix<'T when 'T : Object and IEquatable<'T>> =
class
interface IEquatable<AnyMatrix<'T>>
end
AnyMatrixT | Initializes a new instance of the AnyMatrix class. |
ColumnCount | Gets the number of matrix columns. |
IsReadOnly | Gets a flag indicating whether the matrix is read-only. |
Item | Gets or sets the value of a matrix entry. |
RowCount | Gets the number of matrix rows. |
Equals(AnyMatrixT) | Determines whether the given matrix equals the current matrix. |
Equals(Object) |
Determines whether the given object is an equal matrix.
(Overrides ObjectEquals(Object)) |
Fill | Sets all matrix entries according to a supplied fill function. |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
GetHashCode |
Not a valid operation.
(Overrides ObjectGetHashCode) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
ToArray | Copies the matrix into an array. |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Equality(AnyMatrixT, AnyMatrixT) | Determines whether two matrices are equal. |
Inequality(AnyMatrixT, AnyMatrixT) | Determines whether two matrices are not equal. |