Remove and clear things in a table for presentation
Mostrar comentarios más antiguos
I have a table like this:
T = 2x3 table
percent cars cats
________ _________________ _____________________
'59%' 'hej' 'nej'
[] '42405' '26211'
I would like this to look like this
percent cars cats
________ _________________ _____________________
59% hej nej
42405 26211
Removing [] and ' '. Is there any possible way to achieve this ?
Thanks in advance
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 15 de Mzo. de 2018
1 voto
"Is there any possible way to achieve this"
Copy all of toolbox/matlab/datatypes/@tabular into your own directory that is earlier on the path. Modify the disp.m of your hacked version:
- change fullChar to default to true near line 30
- near line 160, change the scalar string case to not add double-quotes
- near line 320, change the quote characters to empty
- test thoroughly, because chances are that somewhere there is code that relies upon those quote marks being there
Note: You asked about "any possible way", not any practical way. If you had asked about practical ways, I would have said NO.
1 comentario
dpb
el 24 de Jun. de 2021
:)
Categorías
Más información sobre Tables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!