How can I display data inside a table in expanded form?

Greetings... I have a simple strcuture array (s) of two fields: name and data. Assume the array length is two. I wanted to display it in a table form in the command window. So, I used {struct2table} and generated a table T and displayed it in the command window. The problem is that, the table displays the data column in a collapsed form. Assume that s(1).data and s(2).data are (1 x 7) double arrays. The table displays them in that collapsed form: [1x7 double]. I want to expand each one inside the table and show it detailed, like [1.2 3.6 ...] in its place in the table. How can this be done? Thanks in advance.

4 comentarios

dpb
dpb el 3 de Sept. de 2018
Editada: dpb el 3 de Sept. de 2018
In general, the table is a (terribly handy) compositie data storage object and while it has convenient display features, it is NOT designed to be nor is it a general-purpose array viewer.
Walter Roberson
Walter Roberson el 3 de Sept. de 2018
Editada: Walter Roberson el 3 de Sept. de 2018
I could dig into the code and tell you which lines of @tabular/disp.m to change, but are you comfortable hacking Mathworks built in code, knowing that other code relies upon the current behaviour?
I do not recommend doing this. table() objects are not designed for display purposes. But if the question is whether it can be done, then the answer is that the supplied code cannot do it but that it is possible to hack it if you are really serious.
Mohamed Abd El Raheem
Mohamed Abd El Raheem el 6 de Sept. de 2018
Editada: Mohamed Abd El Raheem el 6 de Sept. de 2018
My apologize to every one for my late response.
@dpb: Thank you very much for your response. Is there any other tool in MATLAB to achieve that display function? I really need to view some columns in the table form, but with these data expanded. I need to see the name and the expanded array (just a row vector, 1x7 double array as stated in the above example) related to it besides, as if it is a table. I have about 32 rows, and I want to view them in this form: name_____________ [n1 n2 ...n7].
We have these data in a strcuture array as mentioned before.
@Walter Roberson: Thank you also for your answer, Walter. In present, I don't use tables in anything in my work, I just resorted to them because I supposed they have the display feature I need. If there is no other method in MATLAB to achieve the required display, I would like to hack the code, if this is allowed.
dpb
dpb el 6 de Sept. de 2018
Well, Matlab is not a spreadsheet application; presentation is not it's strong suit.
Have you investigated the workspace variable viewer? It would show the elements of the field in the structure in a spreadsheet-like interface, but it can't place multiple variables on the same page such as what a table is able to consolidate.

Iniciar sesión para comentar.

Respuestas (1)

If you are only using table to display, then what you should be using instead is sprintf() or sprintf() with formats that include widths (possibly calculated) and possibly negative widths if you want left alignment.
>> sprintf('%-10s', 'hello')
ans =
'hello '
>> sprintf('%10s', 'hello')
ans =
' hello'
In particular, suppose you have a cell array column vector Names and a double array Values with the same number of rows.
ncol = size(Values,2);
fmt = ['%-15s ', repmat('%15g ', 1, ncol-1), '%15g\n'];
data = [Names, mat2cell(Values)] .'; %transpose is important
fprintf(fmt, data{:});

Categorías

Productos

Etiquetas

Preguntada:

el 3 de Sept. de 2018

Comentada:

dpb
el 6 de Sept. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by