Versions Compared

Key

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

TELITAB# returns TELITAB# returns a TeLiTab based on a list of parameters

Syntax

  1. TELITAB#(Mode%=0 or Mode%=1,InpVar)
  2. TELITAB#(@Object)

Arguments

  • Mode% is the option of the TELITAB# function
    • Mode%=0 returns the full set of case values for InpVar.
    • Mode%=1 returns the current case values for InpVar.
  • InpVar is a list of parameters in the current solution to be inclued in a Telitab set
  • @Object is an object. In this way you make an explicit TeLiTabs of an object. This is not really necessary because you can address objects like TeLiTabs.

...

If you have parameter A and B and relation

C0# = TELITAB#(0, A, B)

Calculate C0# with a value for A (for instance 1) and B (for instance 2). This results for C0#:

...

To resolve this, write C0# as follows:

C0# = TELITAB#(0, "A", "B")

Carry out the same calculation. The result for C0_2# will now be:

...

The previous relation is changed 

C1# = TELITAB#(1, A, B) 

Calculate C1# with a value for A (for instance 1) and B (for instance 2). This results for C0#:

...