Multiple tables from one table
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vishwas dalal
le 6 Fév 2020
Réponse apportée : Bhaskar R
le 6 Fév 2020
I need to create table of tables, or any other way to export data from the given data table.
0 commentaires
Réponse acceptée
Bhaskar R
le 6 Fév 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, :) ;
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Tables dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!