How to create a table and change columns to rows and also give names
4 views (last 30 days)
Show older comments
I would like to generate 14*3 matrrix.i.e.rand(14,3)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1101315/image.jpeg)
I want the table to be named like this.How can I do this with the help of MATLAB
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1101320/image.jpeg)
0 Comments
Answers (1)
Walter Roberson
on 18 Aug 2022
YourMatrix = rand(4,3);
T = array2table(YourMatrix.', 'VariableNames', {'siddu', 'somu', 'ranu', 'bindu'})
See Also
Categories
Find more on Tables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!