Understanding the code snippet
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I do not understand what this is doing exactl Can anyone help?
eye_matrix = eye(num_labels);
y_matrix = eye_matrix(y,:);
0 commentaires
Réponses (1)
Star Strider
le 10 Avr 2019
By inspection, it generates an identity matrix with dimensions (num_labels x num_labels), then assigns the ‘y’ row of it to the ‘y_matrix’ vector. That vector would be all zeros, except for column ‘y’.
Beyond that, I have no idea what the purpose is.
0 commentaires
Voir également
Catégories
En savoir plus sur Condensed Matter & Materials Physics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!