* not reflected in the matrix, and vice-versa.
*
* @param values The values to be filled into the new matrix.
*/
public DoubleMatrix1D make(double[] values) {
return this == sparse ? new SparseDoubleMatrix1D(values) : new DenseDoubleMatrix1D(values);
}