Multiple tables from one table

2 ビュー (過去 30 日間)
vishwas dalal
vishwas dalal 2020 年 2 月 6 日
回答済み: Bhaskar R 2020 年 2 月 6 日
I need to create table of tables, or any other way to export data from the given data table.

採用された回答

Bhaskar R
Bhaskar R 2020 年 2 月 6 日
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, :) ;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by