convert MATLAB cell type to c++
i'm converting a MATLAB program in c++ using Armadillo for matrix algebra. i'm stuck on cell type. someone has some hints? That's because 'cell' is not really a type - it is a placeholder for anything you want to place in it. The closest thing I can think of in languages such as C# and Python is a 'tuple', which intrinsically can contain anonymous types. Since C++ does not have a built-in tuple type, I suggest you take a look at Boost , which is a very comprehensive, mature and open-source library for practically anything you need in C++. Under Boost, take a look at the Fusion library, or if