Matrix_Class_Error_Message

Performs simple matrix math

Matrix_Class_Error_Message
Version: 1.0.0
Author: AvoLord

Matrix_Class_Error_Message

Sets the Error-messages and the state

Matrix_Class_Error_Message

Matrix

Creates a new matrix-object with given rows, columns and fill

new Matrix(rows: Number, columns: Number, fill: Number)
Parameters
rows (Number) The amount of rows of the matrix
columns (Number) The amount of columns of the matrix
fill (Number) The number with wich the matrix will be filled
Static Members
Error_Message()
randomInt(min, max)
array_mult(a1, a2)
fromArray(array)
diagonal(M1, diagonal_num, filler, diagnonal_num)
random(M1, min, max)
map(M1, func)
add(M1, Obj)
sub(M1, Obj)
mult(M1, Obj)
div(M1, Obj)
prod(M1, M2)
invert(M1)
deserialize(data)
Instance Members
show()
dim()
random(min, max)
toArray()
toArray_flat()
toString()
serialize()
reduce()
map(func)
row_map(row, func)
col_map(col, func)
copy()
unit()
diagonal(diagonal_num, filler)
fill(filler)
transpose()
invert()
add(Obj)
sub(Obj)
mult(Obj)
div(Obj)
triangle(above, below)
isTriangle()
hasEmpty()
determinant(iterations)
solveLGS(iterations)