ContentsIndexHome
PreviousUpNext
setValuesCMO Method

Sets the values for the complete domain of the data, by passing the values as an array and specifying the number of elements in the 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. 

 

virtual void setValuesCMO(const char* const values[], int numberOfValues) = 0;

 

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. 

 

virtual void setValuesCMO(const double values[], int numberOfValues) = 0;

 

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. 

 

virtual void setValuesCMO(const int values[], int numberOfValues) = 0;

 

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. 

 

virtual void setValuesCMO(const std::string values[], int numberOfValues) = 0;