Is it possible to insert multidimensional arrays within table entries?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
deathtime
le 14 Avr 2023
Réponse apportée : the cyclist
le 14 Avr 2023
For example: I want to create a table with 5 rows and 2 columns. The first column is just 5 rows of doubles. Can I insert a 3x3x2 array into every row of the second column?
1 commentaire
Dyuman Joshi
le 14 Avr 2023
Modifié(e) : Dyuman Joshi
le 14 Avr 2023
It is possible, but technically it's a 1x1 cell array which contains the 3x3x2 double array -
data1 = rand(5, 1);
data2 = repmat({rand(3,3,2)}, 5, 1);
y=table(data1, data2)
Réponse acceptée
the cyclist
le 14 Avr 2023
I don't think an element of table can be a mutli-dimensional array, but it can be a cell that holds a multidimensional array:
% Create a cell array that will be converted to a table
c = {1,rand(3,3,2);
2,rand(3,3,2);
3,rand(3,3,2);
4,rand(3,3,2);
5,rand(3,3,2)
};
% Convert to table
t = cell2table(c)
% Contents of t(1,2) is a cell array
t{1,2}
% Contents of that cell is the 3,3,2 array
t{1,2}{:}
I'm therefore not sure if a table would be the most appropriate way to store these data, as opposed to a cell array directly.
(But, I could be wrong about a more direct way to store the array.)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!