www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/CreateTablefromWorkspaceVariablesExample.m

    %% Create Table from Workspace Variables  
% Define workspace variables with the same number of rows. 
LastName = {'Smith';'Johnson';'Williams';'Jones';'Brown'};
Age = [38;43;38;40;49];
Height = [71;69;64;67;64];
Weight = [176;163;131;133;119];
BloodPressure = [124 93; 109 77; 125 83; 117 75; 122 80];  

%% 
% Create a table, |T|, as a container for the workspace variables. 
T = table(Age,Height,Weight,BloodPressure,...
    'RowNames',LastName) 

%%
% |table| names the variables with the workspace variable names.