Permut Data for Neural Networks

2 次查看(过去 30 天)
Hello eveybody !
I use Neural Networks for prediction and i would like to apply random permutation to DataInputs(2*1199) and DataTargets(2*1199).
Could you help me to do that, please ?

采纳的回答

KSSV
KSSV 2017-4-25
I = rand(2,119) ; % data
idx = randperm(size(I,2)) ; % random order
I = I(:,idx) ; % arrange

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by