MATLAB: How to access the data/values from mlreportgen.dom.Table

MATLABmlreportgen.dom.table

I cannot figure out the way to get/access the data/values from a mlreportgen.dom.Table.
Thank you for your help!

Best Answer

In order to access the data from a table, use the entry function.
>> tableEntryOut = entry(tableObj,row,column)
It returns the table entry for the specified column of the specified row.