what mean normr in matlab??
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
what mean normr in matlab??
0 Commenti
Risposta accettata
Wayne King
il 2 Mar 2013
Modificato: Wayne King
il 2 Mar 2013
That is a function in the Neural Network Toolbox that normalizes the rows of the matrix to have l2 norm.
For example:
X = randn(10,4);
Y = normr(X);
Now if you check:
for kk = 1:size(Y,1)
norm(Y(kk,:),2)
end
They all have unit norm.
1 Commento
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Quantum Mechanics 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!