mp_table_class
- mp_table_class()
mp_table_class()- Returns handle to constructor fortableormp_table.Returns a handle to
tableconstructor, if it is available, otherwise tomp_tableconstructor. Useful for table-based code that is compatible with both MATLAB (using native tables) and Octave (usingmp_tableor thetableimplementation from Tablicious, if available).% Works in MATLAB or Octave, which does not (yet) natively support table(). table_class = mp_table_class(); T = table_class(var1, var2, ...);
See also
table,mp_table.