Matrix and Vector Methods

Methods used to manipulate matrices.

This page discusses:

Matrix.Determinant()

Method used to compute a matrix determinant.

Signature

Matrix.Determinant() : Real

ReturnType

Real

Matrix.Dump()

Method used to return the matrix representation in the form of a string.

Signature

Matrix.Dump() : String

ReturnType

String

Matrix.Get()

Method used to return the item x or y of the matrix.

Signature

Matrix.Get(x : Integer, y : Integer) : Real

Arguments

NameInput / OutputRequired?TypeComment
xInYesInteger
yInYesInteger

ReturnType

Real

Matrix.Invert()

Method used to invert the matrix.

Signature

Matrix.Invert() : Matrix

ReturnType

Matrix

Matrix.Set()

Method used to modify the value of the x or y item of the matrix.

Signature

Matrix.Set(x : Integer, y : Integer, value : Real)

Arguments

NameInput / OutputRequired?TypeComment
xInYesInteger
yInYesInteger
valueInYesReal

Matrix.Transpose()

Method used to transpose a matrix.

Signature

Matrix.Transpose() : Matrix

ReturnType

Matrix

Vector.Norm()

Method used to compute the vector norm.

Signature

Vector.Norm() : Real

ReturnType

Real