| PRTools contents |
SETDAT
A = SETDAT(A,DATA,W)
| Input | |
| A | Dataset |
| DATA | Dataset or double |
| W | Mapping (optional) |
| Output | |
| A | Dataset |
The data in the dataset A is replaced by DATA (dataset or double). The number of objects in A and DATA should be equal. Optionally, A is given the feature labels and the output size as defined by the the mapping W. This call is identical to
A = SETDATA(A,DATA);
A = SET(A,'featlab',GETLABELS(W),'featsize',GETSIZE_OUT(W));
| PRTools contents |