How can I add a column with labelining in a matrix
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sazid Hasan
am 27 Aug. 2021
Kommentiert: Sazid Hasan
am 27 Aug. 2021
I have data matrix. I have to add label column with same name Before in the matrix. How I can add this labeling?
0 Kommentare
Akzeptierte Antwort
Chunru
am 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])
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!