Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

REMDOUBL# returns a Telitab subset from which multiple ocurring cases are removed

Syntax

  1. REMDOUBL#(Mode%, Telitab$,Deviation,[ArgPar_1$,..,ArgPar_n$])
  2. REMDOUBL#(Telitab$,[ArgPar_1$,..,ArgPar_n$])

...

  • Telitab$ is a string expression containing table to be analysed.
  • Deviation is a very small value required for instance in order to compensate errors due to internal rounding
  • ArgPar_1$,,,,ArgPar_n$ is an optional list of parameter names in Telitab$ to base the REMDOUBL# on. 

Remarks

  1. By means of the Mode% in combination with Deviation, you are able to get specific sections from a dataset. 
  2. By standard (second syntax) any second case of a table for which the values of ArgPar_1$,,,,ArgPar_n$ are the same, is removed from the table. 
  3. If ArgPar_1$,,,,ArgPar_n$ is void, all parameters in the table should have the same value as in any previous case in order to be removed from the set.

...

When we use the relation:

REMDOUBL#(Telitab$, "SPEED", "RPM")

...

Case 5 (row 5) is removed because SPEED and RPM are the same as in case 2.

Please noteREMDOUBL#(Telitab$) would return the complete Telitab$ as result due to the difference RUN numbers (also for cases 2 and 5).

...