Azzera filtri
Azzera filtri

Permut Data for Neural Networks

3 visualizzazioni (ultimi 30 giorni)
Hamza Ali
Hamza Ali il 25 Apr 2017
Commentato: Hamza Ali il 25 Apr 2017
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 ?

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by