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'})
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!