How to create a double entry table ?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sim
el 18 de Oct. de 2022
Comentada: Sim
el 18 de Oct. de 2022
How to create a double entry table ?
Here below an example:
2 comentarios
Jan
el 18 de Oct. de 2022
Which details of this example meets the definition of what a "double entry table" is? This is a table, what what are "double entries"? Does "double" mean, that something occurs twice, or is it the type double?
Respuesta aceptada
Hiro Yoshino
el 18 de Oct. de 2022
Is this something like this?:
B = table({'Michael';'Beverly';'Alice'},...
[64;69;67],...
[119;163;133],...
[122 80; 109 77; 117 75],...
'VariableNames',{'FirstName' 'Height' 'Weight' 'BloodPressure'},...
'RowNames',{'Garcia' 'Johnson' 'Wu'})
You can find some example if this is the one here: https://www.mathworks.com/help/matlab/matlab_prog/limitations-of-tables-and-timetables.html
Más respuestas (0)
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!