How to convert multiple tables into matrices
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Viet-Anh Do
el 17 de Jun. de 2020
Comentada: Ameer Hamza
el 18 de Jun. de 2020
Hello Folks,
I'm trying to write a function, which converts every inputs as table in matrices. I used to use myTable{:,:} to do this for single input. Now it doesn't work anymore.
0 comentarios
Respuesta aceptada
Ameer Hamza
el 17 de Jun. de 2020
For dealing with multiple tables, it is best to create a cell array
T = {myTable1, myTable2, myTable3};
Then you can function such as cellfun to create a cell array of matrices
M = cellfun(@(x) {x{:,:}}, T); % implicit for-loop
or create a single large matrix
M = [M{:}]; % connect horizontally
M = vertcat(M{:}); % connect vertically
8 comentarios
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!