Multiple tables from one table

조회 수: 3 (최근 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 CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by