Set the components for Data At Points result.
d=setComponents(d,point,inc,nvals)
d=setComponents(d,point,inc,nvals,compressed,data)
SETCOMPONENTS sets the component vectors and optionally data for the Data At Nodes result object. The individual components can be in compressed or uncompressed format. If uncompressed, SETCOMPONENTS will attempt to compress them.
POINT contains a vector of point IDs. If the component list is compressed, POINT contains just the first point ID.
INC contains the point ID increment if compressed, or empty if uncompressed.
NVALS contains the number of point values if compressed, or empty if uncompressed.
COMPRESSED is an optional input logical specifying whether the component vectors are compressed. The default is FALSE.
DATA is an optional input vector containing the data values for this result.
>> d = setComponents(d,1:100,[],[],false,1:100);
imat_result_dap/getComponents