Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Documented all MDA store functions

...

This function adds a new dimension to an existing MDA store.

Arguments:

  1. The name for of the store
  2. Optional: The index of the dimension. Leave it out to add the dimension as the last dimension.
  3. A list of borders (see MDADim)

...

Code Block
MDAAddDim("MyStore", MDADim(0.0, 200.0, ToInteger(3)))

MDARemoveDim(String, Integer)

This function removes an existing dimension from an existing MDA store.

Arguments:

  1. The name of the store
  2. The index of the dimension to remove

Return value: null

Example:

Code Block
MDARemoveDim("MyStore", ToInteger(0))

MDAExchangeDim(String, Integer, List<Double>)

This function replaces en existing dimension of an existing MDA store with a new dimension.

Arguments:

  1. The name for the store
  2. The index of the dimension to exchange
  3. A list of new borders (see MDADim)

Return value: null

Example:

Code Block
MDAExchangeDim("MyDim", ToInteger(0), MDADim(200.0, 400.0, ToInteger(5)))