Multiple tables from one table

2 views (last 30 days)
vishwas dalal
vishwas dalal on 6 Feb 2020
Answered: Bhaskar R on 6 Feb 2020
I need to create table of tables, or any other way to export data from the given data table.

Accepted Answer

Bhaskar R
Bhaskar R on 6 Feb 2020
It is not recommended practive to put your tables as array type, highly error prone and variable name changes. Your should assign as
subtable(:, i) = data(x, :) % for each iteration height of the table must match
It is recommended to use cell array as
subtable{i}= data(x, :) ;

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!