从具有原始数据大小的变量创建 table

Create table from variables with original data sizes

我有一个变量列表及其不同数据类型(float32、uint32、int8 ....)的值。现在我将它们收集到 table:

T = [variable;variable2;variable3;variable4];

table 中的变量自动转换为 uint16。我想要原始大小的值。在将数据收集到 table 时,我怎么能对 matlab 这么说?

您可以在 matlab 中使用 from table。例如:

T = table(categorical({'M';'F';'M'}),[45;32;34],...
{'NY';'CA';'MA'},logical([1;0;0]),...
'VariableNames',{'Gender' 'Age' 'State' 'Vote'});

关注 documentation on table data structure 的更多详情。