MATLAB: How create training and testing data with k-fold validation using neural network

k-foldneural network

Hi, I have finished training and testing data with the neural network formula that I calculated manually. Where is my data x = input (275×25) and t = target (275×1). Now I want to partition my data using K-fold validation where k = 5.
If I make (train or test) it manually, I have to train the input.mat data for the training, which consists of five files with dimension 220×25 every file.mat and five input.mat data for test with dimension 55×25 . I do this by inputting or loading the file repeatedly.
How can I implement the k-fold in the neural network code that I created? Is that possible, do the training and testing partitions then each data partition results in the accuracy of each partition both training and test?
please help me, I confused how where I should put code for k-fold. May anyone help some clear steps to explain it? Thanks