Click or drag to resize

Matrix3By3 Methods

The Matrix3By3 type exposes the following members.

Methods
  NameDescription
Public methodAdd(Matrix3By3)
Adds a matrix to this matrix.
Public methodAdd(Matrix3By3Symmetric)
Adds a matrix to this matrix.
Public methodStatic memberCrossProductEquivalentMatrix(Cartesian)
Forms a Matrix3By3 from the input vector such that the result of the cross product of the input vector with another vector is equivalent to premultiplying the other vector by the returned matrix.
Public methodStatic memberCrossProductEquivalentMatrix(UnitCartesian)
Forms a Matrix3By3 from the input vector such that the result of the cross product of the input unit vector with another vector is equivalent to premultiplying the other vector by the returned matrix.
Public methodDeterminant
Calculates the determinant of the matrix.
Public methodStatic memberDiagonalMatrix(Cartesian)
Forms a diagonal matrix from the input vector.
Public methodStatic memberDiagonalMatrix(UnitCartesian)
Forms a diagonal matrix from the input unit vector.
Public methodStatic memberDiagonalMatrix(Double, Double, Double)
Forms a diagonal matrix from the input elements.
Public methodEquals(Matrix3By3)
Indicates whether another instance of this type is exactly equal to this instance.
Public methodEquals(Matrix3By3Symmetric)
Indicates whether another instance of this type is exactly equal to this instance.
Public methodEquals(Object)
Indicates whether another object is exactly equal to this instance.
(Overrides ValueTypeEquals(Object).)
Public methodEqualsEpsilon
Returns true if all of the elements of this matrix are within epsilon of the same elements of the specified matrix. That is, in order for the matrices to be considered equal (and for this function to return true), the absolute value of the difference between each of their elements must be less than or equal to epsilon.
Public methodFrobeniusNorm
Computes the Frobenius norm of the matrix.
Public methodFrobeniusNormSquared
Computes the square of the Frobenius norm of the matrix.
Public methodGetHashCode
Returns a hash code for this instance, which is suitable for use in hashing algorithms and data structures like a hash table.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInvert
Inverts the matrix.
Public methodMultiply(Cartesian)
Forms a new Cartesian vector as the product of this 3-by-3 matrix and the provided Cartesian vector.
Public methodMultiply(Double)
Multiplies this matrix by a scalar.
Public methodMultiply(ElementaryRotation)
Forms a new 3-by-3 matrix as the product of this 3-by-3 matrix and the provided elementary rotation.
Public methodMultiply(Matrix3By3)
Multiplies this matrix by a matrix.
Public methodMultiply(Matrix3By3Symmetric)
Multiplies this matrix by a matrix.
Public methodSubtract(Matrix3By3)
Subtracts a matrix from this matrix.
Public methodSubtract(Matrix3By3Symmetric)
Subtracts a matrix from this matrix.
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Public methodTranspose
Transposes the matrix.
Top
See Also