How to show all cell contents

10 Ansichten (letzte 30 Tage)
Almudena Cano
Almudena Cano am 5 Mär. 2020
Kommentiert: Almudena Cano am 5 Mär. 2020
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.

Antworten (1)

Guillaume
Guillaume am 5 Mär. 2020
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

Kategorien

Mehr zu Tables finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by