Matrix.Determinant() Method used to compute a matrix determinant. SignatureMatrix.Determinant() : Real ReturnTypeReal
Matrix.Dump() Method used to return the matrix representation in the form of a string. SignatureMatrix.Dump() : String ReturnTypeString
Matrix.Get() Method used to return the item x or y of the matrix. SignatureMatrix.Get(x : Integer, y : Integer) : Real Arguments NameInput / OutputRequired?TypeComment xInYesInteger yInYesInteger ReturnTypeReal
Matrix.Set() Method used to modify the value of the x or y item of the matrix. SignatureMatrix.Set(x : Integer, y : Integer, value : Real) Arguments NameInput / OutputRequired?TypeComment xInYesInteger yInYesInteger valueInYesReal
Matrix.Transpose() Method used to transpose a matrix. SignatureMatrix.Transpose() : Matrix ReturnTypeMatrix