I am trying to get the command window to show the actual value of my table instead of saying [1x41 double].
Below is my working out:
A=(10:0.1:14);
M; %Array of Maximum values
I; %Array of Index of Maximum values
maxtheta = theta(I);
%%Add Table with A vs M vs I
T = table(A,M,maxtheta,'VariableNames',{'a value','max db value','corresponding angle'})
When i click run, this is what it is displaying:
T =
1×3 table
a value max db value corresponding angle
____________ _____________ ___________________
[1×41 double] [1×41 double] [1×41 double]
How can I get it to show the actual values?

 Respuesta aceptada

Image Analyst
Image Analyst el 29 de Abr. de 2021

1 voto

Make them column vectors with (:)
T = table(A(:), M(:), maxtheta(:), 'VariableNames',{'a value','max db value','corresponding angle'})

Más respuestas (1)

giada
giada el 10 de Jul. de 2024

0 votos

Hi, how to solve if the A M and matheta variables would be matrix 2x41?
thank you

5 comentarios

Image Analyst
Image Analyst el 10 de Jul. de 2024
Try
T = table(A, M, maxtheta, 'VariableNames',{'a value','max db value','corresponding angle'})
Walter Roberson
Walter Roberson el 11 de Jul. de 2024
You cannot get the default display of tables to expand 2D variables.
Perhaps using splitvars would suit you.
giada
giada el 11 de Jul. de 2024
Thank you, the problem is that the number of splitted columns varies and it is necessary to assign a different name to each of them (otherwise table command returns error). I do not know how to assign variable with varying name in a for cycle
giada
giada el 11 de Jul. de 2024
Editada: giada el 11 de Jul. de 2024
I got to assign variables and finally that's what I get:
2×2 table
a b
____ _________
1500 1×7 table
2000 1×7 table
a nested table. I would like to see what is inside those tables!
Walter Roberson
Walter Roberson el 11 de Jul. de 2024
You cannot get the default display of tables to expand nested tables.
table() objects are not primarily intended for display purposes. There is very little customization available for the display of table() objects.

Iniciar sesión para comentar.

Categorías

Etiquetas

Preguntada:

el 29 de Abr. de 2021

Comentada:

el 11 de Jul. de 2024

Community Treasure Hunt

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

Start Hunting!

Translated by