Create a table with headers and fill in the table with calculations
198 次查看(过去 30 天)
显示 更早的评论
I want to create a table with headers/variables "std, mean, max". i currently have conducted calculations on the raw data giving me a [1x20] double for each of these headers/columns. I want to fill in the table with these doubles/caclulations. Thank you.
2 个评论
Image Analyst
2020-7-7
Do you mean a table variable, like you'd create with
t = table(theStd(:), theMeans(:), theMaxes(:), 'VariableNames', {'std', 'mean', 'max'});
or do you mean like a spreadsheet on a GUI?
回答(1 个)
Image Analyst
2020-7-7
Try this:
t = table(theStd(:), theMeans(:), theMaxes(:), 'VariableNames', {'std', 'mean', 'max'});
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!