matlab创造table
时间: 2024-01-02 07:21:45 浏览: 72
创建table的方法如下所示:
```matlab
% 创建一个空的table
T = table();
% 创建一个有数据的table
Name = {'John'; 'Sara'; 'Peter'; 'Lisa'};
Age = [25; 32; 19; 41];
Height = [1.78; 1.65; 1.72; 1.60];
T = table(Name, Age, Height);
```
其中,第一个例子创建了一个空的table,而第二个例子创建了一个有数据的table,其中包含了Name、Age和Height三列数据。
阅读全文