How can I add a column with labelining in a matrix
2 views (last 30 days)
Show older comments
I have data matrix. I have to add label column with same name Before in the matrix. How I can add this labeling?0 Comments
Accepted Answer
Chunru
on 27 Aug 2021
% Create a table with some data
a = (1:10)'; b=rand(10, 1); c=randi([1,100], 10, 1);
T = table(a, b, c)
% Now add the label
T.label = repmat("Before", 10, 1);
T = T(:, [end 1:end-1])
More Answers (0)
See Also
Categories
Find more on Statistics and Machine Learning Toolbox 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!