set

public boolean set(int row, Array<double> input)

This sets a row of the Matrix to a copy of a specified Array of doubles.

Return

returns if the operation was successful

Parameters

row

the row to be written over

input

the Array input


public boolean set(int row, int column, double input)

This sets a specified element of the Matrix to an input value.

Return

returns if the operation was successful

Parameters

row

the index of the row of the specified element

column

the index of the column of the specified element

input

the input value