I have a structure face_data that contains two fields. The first is a 360x1 cell array face_test where each cell contains a 88x72 image of a face. The second field is the cell array label_test, which contains a label for each face.
What I'd like to do is convert each face image in each of the 360 cells into a column vector - that is, I want to convert face_test into a 6336 x 360 matrix where each column represents an unrolled face image. I'm new to matlab though and don't know how to do this without a bunch of looping that I guess is unnecessary. Can someone give me a simple solution to this problem?