How to convert multiple tables into matrices
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Viet-Anh Do
am 17 Jun. 2020
Kommentiert: Ameer Hamza
am 18 Jun. 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 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 17 Jun. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!