Everything not being a valid option will be interpreted as a potential datafile name. Given no datafile at all, means read stdin. Also - means stdin
Possible options are:
Option | Description | Default |
---|---|---|
-l# | number of data to use | whole file |
-x# | number of lines to be ignored | 0 |
-M# | Number of columns to be read | 1 |
-c# | column to be read | 1,...,# of columns |
-m# | embedding dimension | 2 |
-F# | The format for the embedding vector (see example) | not set |
-d# | delay of the embedding vector | 1 |
-D# | list of individual delays (see example) | not set |
-o# | output file name | without file name: 'datafile'.del (or stdin.del if stdin was read) If no -o option is given stdout is used |
-V# | verbosity level 0: only panic messages 1: add input/output messages | 1 |
-h | show these options | none |
It is also possible to combine the -M and -m flags. If the value of -m is an integer multiple of the -M value, the program assumes a symmetric embedding. E.g.: -M3 -m9 is the same as -M3 -F3,3,3. In case -m is not a integer multiple of -M the program complains and asks for -F.
-F needs a list of comma separated "partial" dimensions.