get

public Array<double> get(int row)

This returns a specified row of the Matrix in the form of an Array of doubles.

Return

returns the row of the Matrix specified

Parameters

row

the index of the row to return


public double get(int row, int column)

This returns a specified element of the Matrix as a double.

Return

returns the element of the Matrix specified

Parameters

row

the index of the row of the element

column

the index of the column of the element