matlab如何画一张表格图
时间: 2023-07-16 17:15:42 浏览: 859
graphic.zip_matlab绘制表格_柱状图
你可以使用 MATLAB 中的 `uitable` 函数绘制表格图。下面是一个简单的示例代码:
```matlab
% 创建数据
data = {'John', 'Doe', 23; 'Jane', 'Smith', 32; 'Bob', 'Johnson', 45};
% 创建表格
f = figure;
t = uitable(f, 'Data', data, 'ColumnName', {'First Name', 'Last Name', 'Age'},...
'Position', [20 20 260 72]);
```
上述代码将创建一个包含三列数据的表格,每列分别为 "First Name","Last Name" 和 "Age"。你可以根据自己的需要更改数据和表格的位置和大小。
阅读全文