How to create a table and change columns to rows and also give names
조회 수: 4 (최근 30일)
이전 댓글 표시
I would like to generate 14*3 matrrix.i.e.rand(14,3)
I want the table to be named like this.How can I do this with the help of MATLAB
댓글 수: 0
답변 (1개)
Walter Roberson
2022년 8월 18일
YourMatrix = rand(4,3);
T = array2table(YourMatrix.', 'VariableNames', {'siddu', 'somu', 'ranu', 'bindu'})
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!