How can I label a data set?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am preparing some data for the classifier app in MATLAB and want to label my data i.e. I want to add a single column containing 8006 zeroes followed by 3400 ones, 2300 twos, 627 threes, 672 fours and 1006 fives. I have a .mat file for my data.
0 Kommentare
Antworten (1)
Image Analyst
am 28 Okt. 2018
You can make a column vector like this
numRows = [8006,3400,2300,627,672,1006]
col = [];
for k = 1 : length(numRows)
col = [col; (k-1)*ones(numRows(k), 1)];
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!