Convert table to array and back to table

21 次查看(过去 30 天)
Hi, I want to convert my table 'T'(1000 X 70) to an array 'A'. The table 'T' contains 70 different column headers. I again want to convert the array 'A' back to table 'T' without losing the column headers. How is it possible to do without manually entering all the 70 column headers as given below:
T = array2table(A,...
'VariableNames',{'Feet','Inches','Centimeters'})

采纳的回答

Kevin Holly
Kevin Holly 2022-6-21
A = randi([1 10],5,3)
A = 5×3
9 7 4 4 8 6 1 9 4 1 8 7 4 4 5
T = array2table(A,'VariableNames',{'Feet','Inches','Centimeters'})
T = 5×3 table
Feet Inches Centimeters ____ ______ ___________ 9 7 4 4 8 6 1 9 4 1 8 7 4 4 5
Header = T.Properties.VariableNames
Header = 1×3 cell array
{'Feet'} {'Inches'} {'Centimeters'}
Array = table2array(T)
Array = 5×3
9 7 4 4 8 6 1 9 4 1 8 7 4 4 5
NewTable = array2table(Array,'VariableNames',Header)
NewTable = 5×3 table
Feet Inches Centimeters ____ ______ ___________ 9 7 4 4 8 6 1 9 4 1 8 7 4 4 5

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

产品


版本

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by