Convert table to array and back to table
조회 수: 3 (최근 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'})
댓글 수: 0
채택된 답변
Kevin Holly
2022년 6월 21일
A = randi([1 10],5,3)
T = array2table(A,'VariableNames',{'Feet','Inches','Centimeters'})
Header = T.Properties.VariableNames
Array = table2array(T)
NewTable = array2table(Array,'VariableNames',Header)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!