Variable cardinality bookkeeping functions

These four functions makes it easy to work with lists of sets with variable cardinalities.

You are now following this Submission

In many filtering problems one receive not just a single measurement, but a set of measurements at each time step. The most straightforward way of dealing with such variable cardinality entities in Matlab is to store them in cell arrays, but for various reasons the user may not want that. The submitted files (4 functions and an illustratory script) allows the user to store the collection of sets in a matrix instead. Thus the set of sets is given by a concatenated matrix and a row vector containing the cardinalities:

SetOfSets = [ Set1, Set2, .... SetM]
tCloud = [nSet1,nSet2, ... nSetM]

The functions tCloud2BegInd and tCloud2EndInd allows the user to obtain the start and end indices of all the subsets, and thus of any particular set as well. In case one needs to go the other way the functions begInd2TCloud and endInd2TCloud are provided as well.

The best way to understand how this works is perhaps to study the attached illustratory script. The script may need statistics toolbox to run, but the other functions do not require any toolboxes.

Cite As

Edmund Brekke (2026). Variable cardinality bookkeeping functions (https://se.mathworks.com/matlabcentral/fileexchange/25366-variable-cardinality-bookkeeping-functions), MATLAB Central File Exchange. Retrieved .

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.1.0.0

Some files were missing in the first submission. These are now included.

1.0.0.0