how to transmit the row and column names using table2cell?

3 views (last 30 days)
This is my used commands:
mdl = fitlm(ds,'linear','RobustOpts','on');
Estimate = table2cell(mdl.Coefficients);
In r2013b, I could use the command below instead of the above which gave me the row and column names in the cell. Unfortunately, this is not possible in r2014a.
Estimate = dataset2cell(mdl.Coefficients);
Anyone who knows how I can transmit the row and column names from my table with coefficients (mdl.Coefficients) to a cell using table2cell?

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!