ContentsIndexHome
PreviousUpNext
setValuesCMO Method

Sets the values for the complete domain of the data, by passing all the values as a dense array.

The values should be in column major ordering; the default order for multi-dimensional arrays in languages like Fortran and MATLAB. For more information, please visit the Wikipedia page on column major ordering.

Sets the values for the complete domain of the data, by passing all the values as a dense array in column major order. Applies to string and (if the range is no subset of Integers) element valued data. 

 

void setValuesCMO(String... values);

 

Sets the values for the complete domain of the data, by passing all the values as a dense array in column major order. Applies to double valued data only. 

 

void setValuesCMO(double... values);

 

Sets the values for the complete domain of the data, by passing all the values as a dense array in column major order. Applies to integer, double and (if the range is a subset of Integers) element valued data. 

 

void setValuesCMO(int... values);