How to convert multiple tables into matrices

5 Ansichten (letzte 30 Tage)
Viet-Anh Do
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.

Akzeptierte Antwort

Ameer Hamza
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
Viet-Anh Do
Viet-Anh Do am 17 Jun. 2020
Thank you. It works! You save my ass today.
Ameer Hamza
Ameer Hamza am 18 Jun. 2020
I am glad to be of help! :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

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!

Translated by