I have a dict structure with length 5. The dict structure is called "mat_contents". The information is located in "traindata" and their respective labels in "trainlabels". I want to extract a given number of samples from a given label value. For instance, 60 samples (out of 80) from "traindata" with label "trainlabels" equal 1. I have seen some examples in here but they are different from my request.
Assuming this as an example of Input
traindata trainlabels
a 1
b 2
c 2
d 1
e 1
f 2
The result if I want to extract two random samples of traindata with trainlabels value of 2 could be:
b
f