How to show all cell contents
20 次查看(过去 30 天)
显示 更早的评论
Hi everybody,
I have a table with cells, and matlab doesn't show me all the cell information when it's big.
I have this inputs:

And I want to make the next table:

I want to see all the Genes array components.
0 个评论
回答(1 个)
Guillaume
2020-3-5
I want to see all the Genes array components
Unless you code your own table display function, which would be a fair amount of work, this is not possible. Matlab developpers have made the decision not to display the content of cell arrays when it's in a table and their number of elements is above a fixed threshold.
Note that it is only the display that is affected. All the char vectors in your cell array are stored unchanged in your table, so you can always extract them and visualise them:
T.genes
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!