MATLAB: How to randomly select matrices from within a cell array for neural network training

MATLABneural networkneural networks

Hi!
My problem is, I want to create a training, test and validation set for neural network training from a cell array that contains matrices with different number of rows (denoting samples), but of course the same number of columns(denoting variables).
One issue is, the train function does not accept an input cell array with matrices having different number of rows or columns.
Another issue is, If I use the function 'patternnet' for creating a network and set net.divideFcn = 'dividerand', it chooses samples randomly, I suppose. But I want the matrices in the cell, instead of rows from all matrices within the cell, to be chosen randomly. How do I go about it?
I'm not sure, but is cvpartition an option? I'm not sure if the partition model can be used with NNs
Thanks.

Best Answer

Convert cells to an I x N input matrix with N I-dimensional input vectors and an O x N output matrix with N corresponding O-dimensional target vectors.
Use divideind to divide into trn/val/tst subsets.
Hope this helps.
Thank you for formally accepting my answer
Greg