gather many tables in one table

2 views (last 30 days)
How can I gather data in different tables in one table.

Accepted Answer

Star Strider
Star Strider on 26 Aug 2015
That depends on whether you’re concatenating columns or adding rows.
Concatenating columns is just like regular matrix column concatenation:
Tnew = [Told Tadd];
where ‘Told’ is your original table, and ‘Tadd’ is the table you want to concatenate to it.
Adding rows is described in Add and Delete Table Rows.
  2 Comments
hanem ellethy
hanem ellethy on 26 Aug 2015
thank you so much the link is so helpful.

Sign in to comment.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!