how to create target matrix
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hi I am having a signature database of 50 signatures. (i.e 5 samples of each of the 10 signers and extracted 14 features of every signature).that is i have an i/p matrix of size(14 x 50). Now i have to create a target matrix of 10 x 50 (because of 10 classes).Targets will be a 10x50 matrix, where each column indicates the correct signature with a 1 in one element (and zeros in the other 9 elements).But i don't know how to create this. please help.
0 Commenti
Risposte (1)
Greg Heath
il 14 Ago 2012
%Example
classindex = [ 1:2:9 10:-2:2 ]
target = ind2vec(classindex)
% Hope this helps.
0 Commenti
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox 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!